@charset "UTF-8";

:root {
  --font-family-text: "Inter", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  --font-family-title: "Inter", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, "游ゴシック Medium", YuGothic, YuGothicM, sans-serif;
  --font-family-en: "linotype-sabon", sans-serif;
  --text-color: #2E2E2E;
  --text-dark-color: #CECECE;
  --loud-color: #B58957;
  --title-color: #B58957;
  --menu-color: #2E2E2E;
  --primary-btn-color: #FFFFFF;
  --background-primary-btn: #B58957;
  --background-loud: #9E7E5B;
  --background-footer: #B58957;
  --base-font-size: 1.6rem;
  --h1-font-size: 6.1rem;
  --h2-font-size: 3.4rem;
  --h3-font-size: 2.6rem
}

@media (min-width:768px) and (max-width:991px) {
  .class {
    width: 60%
  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

body {
  line-height: 1
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

body {
  line-height: 1
}

ol,
ul {
  list-style: none
}

blockquote,
q {
  quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

button {
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family-text)
}

input {
  padding: 0;
  font-family: var(--font-family-text)
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.4
}

h1 {
  font-size: var(--h1-font-size)
}

h2 {
  font-size: var(--h2-font-size)
}

h3 {
  font-size: var(--h3-font-size)
}

a {
  color: var(--text-color);
  text-decoration: none
}

a:visited {
  color: var(--text-color);
  text-decoration: none
}

a:hover,
a:visited:hover {
  color: var(--loud-color);
  text-decoration: none
}

a:focus {
  outline: 0;
  text-decoration: none
}

.more {
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 18rem;
  height: 6rem;
  border-radius: .5rem;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff !important;
  background: #b58957
}

.btn-primary:hover {
  opacity: .6
}

@media (max-width:768px) {
  .btn-primary {
    max-width: 100%;
    height: 5.2rem;
    font-size: 1.4rem
  }
}

.nav-bar-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem
}

.nav-bar-menu ul li a {
  display: flex;
  font-size: 1.6rem;
  line-height: 3.6rem;
  color: var(--menu-color);
  font-weight: 700;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out
}

.nav-bar-menu ul li a:hover {
  color: var(--loud-color)
}

@media (max-width:768px) {
  .nav-bar-menu {
    padding: 11.5rem 1.5rem 14rem;
    height: 100vh;
    width: 100vw;
    max-width: 33.2rem;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999;
    overflow-x: hidden;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transform: translateX(100%);
    overflow-y: scroll;
    background: #8b7b6b
  }

  .nav-bar-menu.is_active {
    transform: translateX(0)
  }

  .nav-bar-menu .navbar-brand {
    width: 5.2rem !important;
    position: absolute;
    top: 2rem !important;
    right: 3.2rem !important
  }

  .nav-bar-menu .logo-menu {
    width: 26.3rem;
    margin: 0 auto 3rem
  }

  .nav-bar-menu ul {
    display: grid;
    align-items: start;
    gap: 0;
    grid-template-columns: 1fr
  }

  .nav-bar-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .3)
  }

  .nav-bar-menu ul li a {
    display: block;
    padding: 0 1.5rem;
    line-height: 4.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff
  }
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0
}

.slick-list:focus {
  outline: 0
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: ''
}

.slick-track:after {
  clear: both
}

.slick-loading .slick-track {
  visibility: hidden
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px
}

[dir=rtl] .slick-slide {
  float: right
}

.slick-slide img {
  display: block
}

.slick-slide.slick-loading img {
  display: none
}

.slick-slide.dragging img {
  pointer-events: none
}

.slick-initialized .slick-slide {
  display: block
}

.slick-loading .slick-slide {
  visibility: hidden
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent
}

.slick-arrow.slick-hidden {
  display: none
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding-top: 6rem
}

.slick-dots li button {
  cursor: pointer;
  text-indent: -9999px;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background: #fff;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out
}

.slick-dots li button:hover {
  background: #8b7b6b
}

.slick-dots li.slick-active button {
  background: #8b7b6b
}

@media (max-width:768px) {
  .slick-dots {
    padding-top: 3rem
  }
}

swiper-container {
  width: 100%;
  height: 100%
}

swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 28rem !important;
  height: auto
}

swiper-slide img {
  display: block;
  width: 100%
}

@media only screen and (min-width:769px) {
  swiper-slide:first-child {
    transition: transform .1s
  }

  swiper-slide:first-child img {
    transition: box-shadow .5s
  }

  swiper-slide.swiper-slide-active:first-child {
    transform: translateX(50%);
    z-index: 2
  }

  swiper-slide.swiper-slide-active:first-child img {
    box-shadow: 0 32px 80px rgba(0, 0, 0, .35)
  }

  swiper-slide:nth-child(2) {
    transition: transform .1s
  }

  swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(55%);
    z-index: 1
  }

  swiper-container[dir=rtl] swiper-slide.swiper-slide-active:first-child {
    transform: translateX(-50%)
  }

  swiper-container[dir=rtl] swiper-slide.swiper-slide-next:nth-child(2) {
    transform: translateX(-55%)
  }
}

.swiper-scrollbar {
  height: 4px;
  background: rgba(178, 150, 118, .2);
  width: 26rem
}

.swiper-scrollbar .swiper-scrollbar-drag {
  background: #b29676;
  height: 4px
}

.swiper-button-next,
.swiper-button-prev {
  width: 3.4rem
}

.swiper-button {
  display: flex;
  flex-direction: row-reverse;
  gap: .9rem;
  background: #fff;
  position: absolute;
  bottom: 3.5rem;
  right: 0;
  padding: 0 2rem;
  z-index: 9
}

.mySwiper {
  padding-bottom: 4.5rem
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box
}

html {
  font-size: 10px
}

body {
  background: #fff;
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 400;
  width: 100%;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .05em
}

body.is_active {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

body.is_active::after {
  content: '';
  width: 100vw;
  height: 100vh;
  background: rgba(139, 123, 107, .5);
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  z-index: 99
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  border-image: none;
  border-style: solid none none;
  border-width: .2em 0 0 0;
  margin: 0
}

.container {
  width: 100%;
  max-width: 111rem;
  padding: 0 1.5rem;
  margin: 0 auto
}

p {
  margin-bottom: 1.5rem
}

input:focus {
  outline: 0
}

a img {
  transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out
}

a img:hover {
  opacity: .7
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  vertical-align: middle
}

iframe {
  width: 100%;
  vertical-align: middle
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px
}

::-webkit-scrollbar-track {
  background: rgba(178, 150, 118, .2)
}

::-webkit-scrollbar-thumb {
  background: #b29676
}

.bd-b-none {
  border-bottom: none !important
}

.no-bg {
  background: 0 0 !important
}

.no-bf::before {
  display: none
}

.flex {
  display: flex !important;
  flex-wrap: wrap
}

.justify-content-center {
  justify-content: center
}

.text-center {
  text-align: center
}

@media (max-width:768px) {
  .sp-overflow-auto {
    overflow: auto !important
  }

  .sp-overflow-auto h3 {
    width: 76.9rem
  }

  .w-100-sp {
    width: 100% !important
  }
}

.mb-60 {
  margin-bottom: 6rem
}

.header {
  background: #fff;
  border-bottom: 1px solid #d1d1d1
}

.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 7.5rem 1.4rem 16.5rem;
  position: relative
}

.header__main .navbar-brand {
  width: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer
}

.header__main .logo {
  width: 18.7rem
}

.header__main--right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8rem
}

.header__main--right .btn {
  display: grid;
  align-items: center;
  gap: 2.5rem;
  grid-template-columns: 23.7rem auto;
  font-size: 3rem;
  line-height: 1
}

.header__main--right .btn a {
  color: #777
}

@media (max-width:768px) {
  .header {
    border: none
  }

  .header__main {
    padding: .6rem 0 .6rem 2rem
  }

  .header__main .navbar-brand {
    width: 6.4rem;
    left: auto;
    right: 0
  }

  .header__main .logo {
    width: 12.8rem
  }

  .header__main--right .btn {
    display: none
  }
}

.banner {
  margin-bottom: 7rem;
  padding-top: 3.7rem;
  padding-left: 15rem;
  padding-right: 12rem;
  position: relative
}

.banner::before {
  content: '';
  width: 77.7rem;
  height: calc(100% + 33rem);
  background: #f8f4f1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1
}

.banner::after {
  content: '';
  width: 70.8rem;
  height: 40.4rem;
  background: #8b7b6b;
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  z-index: -1
}

.banner .container {
  max-width: 100%
}

.banner__main figure img {
  width: 100%;
  height: auto
}

.banner__main--btn {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  grid-template-columns: repeat(3, auto);
  padding-top: 1.3rem
}

.banner__main--btn .txt__btn {
  display: flex;
  gap: 3.3rem
}

.banner__main--btn .more {
  width: 26.5rem;
  max-width: 36.4rem;
  height: 8.5rem;
  position: relative;
  font-size: 1.8rem
}

.banner__main--btn .more i {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%)
}

.banner__main--btn .more:first-child {
  background: #8b7b6b
}

.banner__main--btn img {
  width: 47.9rem
}

.news-box {
  padding: 3rem 0;
  position: relative
}

.news-box__main {
  background: #fff;
  box-shadow: 0 0 12px #00000029;
  border-radius: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding: 5.5rem
}

.news-box__main h2 {
  font-size: 5rem;
  color: #2e2e2e;
  line-height: 1;
  padding-right: 5rem;
  font-family: var(--font-family-en)
}

.news-box__main--list {
  padding-left: 2.8rem;
  border-left: 1px solid #b58957;
  overflow: auto;
  max-height: 16.5rem
}

.news-box__main--list .items {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #b58957;
  display: grid;
  align-items: start;
  gap: 2rem;
  grid-template-columns: 8rem 1fr
}

.news-box__main--list .items time {
  font-size: 1.6rem;
  line-height: 4rem;
  color: #b58957;
  font-weight: 500;
  letter-spacing: normal
}

.news-box__main--list .items p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 2.5rem
}

.news-box__main--list .items p span {
  font-weight: 500;
  font-size: 1.5rem
}

.news-box__main--list .items:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0
}

.menu-box {
  padding: 12rem 0 0;
  position: relative
}

.menu-box .head-box {
  margin-bottom: 2.2rem;
  display: grid;
  align-items: start;
  gap: 1.6rem
}

.menu-box .head-box h2 {
  font-size: 3.8rem;
  line-height: 1;
  font-family: var(--font-family-en);
  letter-spacing: .12em
}

.menu-box .head-box p {
  margin-bottom: 0;
  display: grid;
  align-items: center;
  justify-content: start;
  grid-template-columns: repeat(2, auto);
  gap: 1.2rem;
  line-height: 2.4rem;
  color: var(--loud-color);
  font-weight: 700;
  letter-spacing: .15em
}

.menu-box .head-box p::before {
  content: '';
  width: 5rem;
  height: 1px;
  background: #2e2e2e
}

.menu-box__main {
  padding: 3rem 0;
  position: relative
}

.menu-box__main::after {
  content: '';
  width: 100vw;
  height: 100%;
  background-image: url(../images/menu-bg.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1
}

.menu-box__main--items {
  display: grid !important;
  align-items: start;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr)
}

.menu-box__main--items .items {
  background: #fff;
  border: 1px solid #707070;
  border-radius: .5rem;
  overflow: hidden
}

.menu-box__main--items .items main {
  display: grid;
  align-items: center;
  gap: 2.2rem;
  grid-template-columns: 8.9rem 1fr
}

.menu-box__main--items .items figure {
  margin-top: -1px;
  margin-left: -1px;
  margin-bottom: -1px
}

.menu-box__main--items .items h3 {
  font-size: 1.6rem;
  font-weight: 500;
  color: #2e2e2e
}

.price-box {
  padding-top: 11rem
}

.price-box__main {
  width: 100%;
  max-width: 81.2rem;
  margin: 0 auto
}

.price-box__main--group {
  margin-bottom: 1.4rem;
  border: 1px solid #9e7e5b
}

.price-box__main--group h3 {
  text-align: center;
  line-height: 5.4rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 600
}

.price-box__main--group ul li {
  display: grid;
  grid-template-columns: 57.6rem 1fr;
  line-height: 5.4rem;
  font-weight: 500
}

.price-box__main--group ul li span {
  line-height: 5.4rem;
  padding: 0 4rem;
  background: #f8f4f1;
  margin-right: 1.5rem
}

.price-box__main p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 2.8rem
}

.introspection-box {
  padding-top: 15rem
}

.introspection-box__main {
  display: grid;
  align-items: start;
  gap: 4rem;
  grid-template-columns: 1fr 70rem
}

.introspection-box__main--txt .head-box {
  margin-bottom: 4rem;
  display: grid;
  align-items: start;
  gap: 1.6rem
}

.introspection-box__main--txt .head-box h2 {
  font-size: 3.8rem;
  line-height: 1;
  font-family: var(--font-family-en);
  letter-spacing: .12em
}

.introspection-box__main--txt .head-box p {
  margin-bottom: 0;
  display: grid;
  align-items: center;
  justify-content: start;
  grid-template-columns: repeat(2, auto);
  gap: 1.2rem;
  line-height: 2.4rem;
  color: var(--loud-color);
  font-weight: 700;
  letter-spacing: .15em
}

.introspection-box__main--txt .head-box p::before {
  content: '';
  width: 5rem;
  height: 1px;
  background: #2e2e2e
}

.introspection-box__main--txt .txt {
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: 500
}

.information-box {
  padding: 12rem 0
}

.information-box__main {
  display: grid;
  align-items: start;
  gap: 19rem;
  grid-template-columns: 35rem 1fr
}

.information-box__main .head-box {
  margin-bottom: 4rem;
  display: grid;
  align-items: start;
  gap: 1.6rem
}

.information-box__main .head-box h2 {
  font-size: 3.8rem;
  line-height: 1;
  font-family: var(--font-family-en);
  letter-spacing: .12em
}

.information-box__main .head-box p {
  margin-bottom: 0;
  display: grid;
  align-items: center;
  justify-content: start;
  grid-template-columns: repeat(2, auto);
  gap: 1.2rem;
  line-height: 2.4rem;
  color: var(--loud-color);
  font-weight: 700;
  letter-spacing: .15em
}

.information-box__main .head-box p::before {
  content: '';
  width: 5rem;
  height: 1px;
  background: #2e2e2e
}

.information-box__main--txt .calenda {
  margin-bottom: 2.8rem;
  display: grid;
  align-items: start;
  gap: 1rem
}

.information-box__main--txt .calenda p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 2rem;
  color: #875215;
  font-weight: 600;
  letter-spacing: .06em
}

.information-box__main--txt .btn {
  display: grid;
  align-items: start;
  gap: 2.75rem
}

.information-box__main--txt .btn a {
  display: grid;
  align-items: center;
  justify-content: start;
  grid-template-columns: repeat(2, auto);
  letter-spacing: .15em
}

.information-box__main--txt .btn a.tel {
  gap: 1.75rem;
  font-size: 3.2rem;
  line-height: 2.8rem;
  color: #875215;
  font-weight: 500
}

.information-box__main--txt .btn a.tel::before {
  content: '';
  width: 4.168rem;
  height: 4.166rem;
  background-image: url(../images/icon-tel.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain
}

.information-box__main--txt .btn a.address {
  gap: 2.3rem;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #875215;
  font-weight: 500;
  letter-spacing: .15em
}

.information-box__main--txt .btn a.address::before {
  content: '';
  width: 3.402rem;
  height: 4.943rem;
  background-image: url(../images/icon-address.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain
}

.information-box__main--flow .group {
  border-top: 1px solid #b58957
}

.information-box__main--flow .group ul li {
  display: grid;
  gap: 5.5rem;
  grid-template-columns: auto 1fr;
  padding: 2.4rem 1.8rem;
  font-size: 2rem;
  line-height: 2.8rem;
  font-weight: 700;
  border-bottom: 1px solid #c1c1c1;
  letter-spacing: .15em
}

.information-box__main--flow .group ul li span {
  display: flex;
  align-items: center;
  gap: 2.9rem;
  font-size: 2rem;
  line-height: 2.8rem;
  color: var(--loud-color);
  font-weight: 700;
  font-family: var(--font-family-en)
}

.information-box__main--flow .group ul li span::before {
  content: '+'
}

.means-box {
  padding-bottom: 9rem
}

.means-box__main--items {
  margin-bottom: 3.2rem
}

.means-box__main--items:last-child {
  margin-bottom: 0
}

.means-box__main--items .head {
  display: grid;
  align-items: center;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 0 6rem;
  background: #b58957;
  border-radius: 4px;
  line-height: 7rem;
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3rem
}

.means-box__main--items .head picture {
  margin-top: -.5rem
}

.means-box__main--items .group {
  padding: 0 6rem;
  display: grid;
  align-items: center;
  gap: 4.2rem;
  grid-template-columns: 48rem 32.3rem
}

.means-box__main--items .group__txt h3 {
  margin-bottom: 2.27rem;
  font-size: 2.3rem;
  line-height: 3.4rem;
  font-weight: 500;
  color: #333
}

.means-box__main--items .group__txt p {
  margin-bottom: 1.8rem;
  line-height: 2.8rem
}

.means-box__main--items ul {
  padding: 0 6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 16.8rem
}

.means-box__main--items ul li {
  font-size: 1.9rem;
  line-height: 3rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem
}

.means-box__main--items ul li::before {
  content: '';
  width: 1.1rem;
  height: 1.1rem;
  background: #b58957;
  border-radius: 50%;
  position: absolute;
  top: .8rem;
  left: 0
}

.clinic-box {
  padding: 15rem 0
}

.clinic-box__main {
  display: grid;
  align-items: start;
  justify-content: start;
  gap: 8rem;
  grid-template-columns: repeat(3, auto)
}

.clinic-box__main h3 {
  font-size: 2.9rem;
  line-height: 1;
  font-family: var(--font-family-en)
}

.clinic-box__main--contact h3 {
  margin-bottom: 4.1rem
}

.clinic-box__main--contact .btn {
  display: grid;
  align-items: start;
  gap: 3.5rem
}

.clinic-box__main--contact .btn a {
  display: flex;
  align-items: center
}

.clinic-box__main--contact .btn a.tel {
  gap: 1rem;
  font-size: 2.4rem;
  line-height: 1rem;
  color: var(--text-color);
  font-weight: 500
}

.clinic-box__main--contact .btn a.tel::before {
  content: '';
  width: 3.21rem;
  height: 3.208rem;
  background-image: url(../images/icon-tel.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain
}

.clinic-box__main--contact .btn a.address {
  gap: 1.78rem;
  font-size: 1.2rem;
  line-height: 2.1rem;
  font-weight: 500;
  color: var(--text-color)
}

.clinic-box__main--contact .btn a.address::before {
  content: '';
  width: 2.62rem;
  height: 3.807rem;
  background-image: url(../images/icon-address.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain
}

.clinic-box__main--menu {
  min-width: 20rem
}

.clinic-box__main--menu h3 {
  margin-bottom: 2rem
}

.clinic-box__main--menu ul li a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: 1.5rem 0;
  font-size: 1.2rem;
  line-height: 1.7rem;
  font-weight: 500;
  color: #2e2e2e;
  border-bottom: 1px solid #2e2e2e;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out
}

.clinic-box__main--menu ul li a::before {
  content: '-'
}

.clinic-box__main--menu ul li a:hover {
  color: var(--loud-color)
}

.clinic-box__main--about h3 {
  margin-bottom: 1.4rem
}

.clinic-box__main--about p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 2.1rem;
  font-weight: 500
}

.clinic-box__main--about .more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .8rem;
  width: 12rem;
  height: 3.4rem;
  border: 1px solid #b58957;
  border-radius: .5rem;
  background: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: var(--loud-color);
  margin-bottom: 1.5rem
}

.clinic-box__main--about .more::before {
  content: '';
  width: 1.2rem;
  height: 1px;
  background: var(--loud-color)
}

.clinic-box__main--about .more:hover {
  background: var(--loud-color);
  color: #fff
}

.clinic-box__main--about .more:hover::before {
  background: #fff
}

.banner-page {
  background-image: url(../images/menu-bg.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover
}

.banner-page__main {
  display: flex;
  align-items: center;
  height: 34rem
}

.banner-page__main h1 {
  margin-bottom: 1.2rem;
  font-size: 6.1rem;
  line-height: 8.9rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .15em
}

.banner-page__main p {
  letter-spacing: .15em;
  margin-bottom: 0;
  font-size: 3.6rem;
  line-height: 1;
  color: #fff;
  font-family: var(--font-family-en)
}

.site-content {
  padding-top: 10rem
}

.list-post {
  display: grid;
  align-items: start;
  column-gap: 6rem;
  row-gap: 7rem;
  grid-template-columns: repeat(3, 1fr)
}

.list-post__items figure {
  margin-bottom: 2rem
}

.list-post__items--txt time {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 2rem;
  line-height: 2.7rem;
  margin-bottom: 1.5rem;
  color: #000
}

.list-post__items--txt time i {
  font-size: 3rem;
  line-height: 1
}

.list-post__items--txt h3 {
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: #000
}

.list-post__items--txt h3 a {
  color: #000
}

.list-post__items--txt h3 a:hover {
  color: var(--loud-color)
}

.page-numbers {
  padding-top: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.page-numbers li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 4rem;
  height: 4rem;
  background: #f8f4f1;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #3e3a39;
  transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out
}

.page-numbers li a.actives,
.page-numbers li a:hover {
  background: #b29676;
  color: #fff
}

.page-numbers li a svg {
  width: 1rem
}

.page-numbers li.actives a {
  background: #b29676;
  color: #fff
}

.beauty-page__main {
  margin-bottom: 11rem
}

.beauty-page__main--head {
  margin-bottom: 4.5rem;
  text-align: center
}

.beauty-page__main--head h2 {
  margin-bottom: .5rem;
  color: #2e2e2e;
  font-size: 3.4rem;
  line-height: 4.9rem;
  position: relative
}

.beauty-page__main--head p {
  margin-bottom: 0;
  font-size: 2.6rem;
  line-height: 3.7rem;
  color: #b29676;
  font-weight: 600
}

.beauty-page__main--content {
  display: grid;
  align-items: end;
  gap: 4.7rem;
  grid-template-columns: 52.7rem 1fr
}

.beauty-page__main--content figure {
  position: relative;
  padding-right: 3.5rem;
  padding-bottom: 4.2rem
}

.beauty-page__main--content figure::after {
  content: '';
  width: 48.3rem;
  height: 49.4rem;
  background: #f8f4f1;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1
}

.beauty-page__main--content .text .txt {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #666
}

.beauty-page__main--content .text .group {
  margin-bottom: 2rem
}

.beauty-page__main--content .text .group h3 {
  padding: 0 7rem;
  border-top: 1px solid #b29676;
  border-bottom: 1px solid #b29676;
  line-height: 4.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #b29676
}

.beauty-page__main--content .text .group ul {
  margin-bottom: 1rem
}

.beauty-page__main--content .text .group ul li {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 37.5rem 1fr;
  font-size: 1.2rem;
  line-height: 4.2rem;
  border-bottom: 1px solid #777
}

.beauty-page__main--content .text .group ul li span {
  padding: 0 7rem;
  background: #f8f4f1
}

.beauty-page__main--content .text .group p {
  margin-bottom: 0;
  font-size: 1.2rem
}

.beauty-page__main--content .text .btn {
  display: grid;
  align-items: start;
  gap: 1.2rem
}

.beauty-page__main--content .text .btn .more {
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #b29676;
  padding: 1.2rem 0 1.4rem;
  pointer-events: none
}

.beauty-page__main--content .text .btn .more:hover {
  background: var(--text-color)
}

.beauty-page__permanent--head {
  text-align: center;
  margin-bottom: 4rem
}

.beauty-page__permanent--head h2 {
  color: #b29676;
  font-weight: 700
}

.beauty-page__permanent--des {
  background: #f8f4f1;
  padding: 2.8rem 1.5rem;
  margin-bottom: 2rem
}

.beauty-page__permanent--des p {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 2.6rem
}

.beauty-page__permanent--des .group {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: 5.2rem;
  grid-template-columns: 15.5rem 44.2rem
}

.beauty-page__permanent--des .group__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: #b29676;
  line-height: 6.5rem;
  grid-template-columns: repeat(2, auto);
  font-weight: 600;
  color: #fff;
  position: relative
}

.beauty-page__permanent--des .group__btn a i:first-child {
  font-size: 3rem
}

.beauty-page__permanent--des .group__btn a i:last-child {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%)
}

.beauty-page__permanent--des .group__btn a:hover {
  opacity: .7
}

.beauty-page__permanent--group {
  padding: 0 13.5rem;
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, auto);
  gap: 3rem;
  margin-bottom: 6rem
}

.beauty-page__permanent--group .items {
  font-size: 1.4rem;
  line-height: 2.6rem
}

.beauty-page__permanent--group .items span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #aa8d6b
}

.beauty-page__permanent--group .items:nth-child(2) {
  width: 33rem
}

.beauty-page__btn {
  position: relative;
  margin-bottom: 6rem;
  margin-bottom: 10rem;
  display: grid;
  justify-content: center;
  gap: 3rem;
  grid-template-columns: repeat(3, 25rem)
}

.beauty-page__btn .more {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  width: 100%;
  height: 6.5rem;
  background: #f8f4f1;
  font-size: 1.6rem;
  font-weight: 600;
  color: #232323
}

.beauty-page__btn .more i {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%)
}

.beauty-page__btn .more.is_acitve,
.beauty-page__btn .more:hover {
  background: #b29676;
  color: #fff
}

.beauty-page__beforeafter {
  padding: 0 13rem;
  margin-bottom: 15rem
}

.beauty-page__beforeafter--items {
  margin-bottom: 6rem
}

.beauty-page__beforeafter--items:last-child {
  margin-bottom: 0
}

.beauty-page__beforeafter--items h2 {
  text-align: center;
  line-height: 7rem;
  background: #b29676;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4rem
}

.beauty-page__beforeafter--items .group {
  margin-bottom: 4rem;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  grid-template-columns: 46.3rem 1fr
}

.beauty-page__beforeafter--items .group .txt {
  font-size: 1.4rem;
  line-height: 2.6rem
}

.beauty-page__beforeafter--items .group.no-thumb {
  display: block
}

.beauty-page__beforeafter--items h3 {
  text-align: center;
  margin-bottom: 2.3rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 600;
  position: relative
}

.beauty-page__beforeafter--items h3 i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer
}

.beauty-page__beforeafter--items .tabels__rows {
  display: grid;
  align-items: center;
  gap: 5rem;
  grid-template-columns: 52rem 1fr;
  font-size: 1.2rem;
  line-height: 2rem;
  border-bottom: 1px solid #b29676
}

.beauty-page__beforeafter--items .tabels__rows:first-child {
  border-top: 1px solid #b29676
}

.beauty-page__beforeafter--items .tabels__rows--labels {
  padding: 1rem 10rem 1rem;
  min-height: 6rem;
  display: grid;
  align-items: center;
  background: #f8f4f1
}

.beauty-page__beforeafter--items .text {
  padding: 2.5rem 7.5rem;
  background: #f8f4f1;
  border-top: 1px solid #b29676;
  border-bottom: 1px solid #b29676;
  margin-bottom: 4rem
}

.beauty-page__beforeafter--items .text p {
  font-size: 1.2rem;
  line-height: 2.6rem
}

.beauty-page__beforeafter--items .text p:last-child {
  margin-bottom: 0
}

.beauty-page__beforeafter--items .faq {
  padding-top: 3rem;
  border-top: 1px solid #b29676
}

.beauty-page__beforeafter--items .faq__items {
  margin-bottom: 2.5rem;
  border: 1px solid #b29676
}

.beauty-page__beforeafter--items .faq__items:last-child {
  margin-bottom: 0
}

.beauty-page__beforeafter--items .faq__items--q {
  padding: 0 1rem;
  background: #f8f4f1;
  display: grid;
  align-items: center;
  gap: 1rem;
  grid-template-columns: 3.271rem auto;
  position: relative;
  font-size: 1.4rem;
  line-height: 4rem;
  color: #b29676;
  font-weight: 600
}

.beauty-page__beforeafter--items .faq__items--q::before {
  content: '';
  width: 3.271rem;
  height: 3.23rem;
  background-image: url(../images/q1.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%
}

.beauty-page__beforeafter--items .faq__items--q span {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2.217rem;
  height: 2.217rem;
  background-image: url(../images/icon-dows.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer
}

.beauty-page__beforeafter--items .faq__items--a {
  padding: 1rem 1rem 1rem 5.2rem;
  position: relative;
  border-top: 1px solid #b29676;
  font-size: 1.2rem;
  line-height: 2.6rem
}

.beauty-page__beforeafter--items .faq__items--a::before {
  content: '';
  width: 2.701rem;
  height: 2.701rem;
  background-image: url(../images/a.webp);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 1rem;
  left: 1rem
}

.beauty-page__beforeafter--items .faq__items:nth-child(1) .faq__items--q::before {
  background-image: url(../images/q1.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(2) .faq__items--q::before {
  background-image: url(../images/q2.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(3) .faq__items--q::before {
  background-image: url(../images/q3.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(4) .faq__items--q::before {
  background-image: url(../images/q4.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(5) .faq__items--q::before {
  background-image: url(../images/q5.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(6) .faq__items--q::before {
  background-image: url(../images/q6.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(7) .faq__items--q::before {
  background-image: url(../images/q7.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(8) .faq__items--q::before {
  background-image: url(../images/q8.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(9) .faq__items--q::before {
  background-image: url(../images/q9.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(10) .faq__items--q::before {
  background-image: url(../images/q10.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(11) .faq__items--q::before {
  background-image: url(../images/q11.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(12) .faq__items--q::before {
  background-image: url(../images/q12.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(13) .faq__items--q::before {
  background-image: url(../images/q13.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(14) .faq__items--q::before {
  background-image: url(../images/q14.webp)
}

.beauty-page__beforeafter--items .faq__items:nth-child(15) .faq__items--q::before {
  background-image: url(../images/q15.webp)
}

.beauty-page__list {
  display: grid;
  align-items: start;
  gap: 7rem
}

.beauty-page__list--items:last-child {
  margin-bottom: 0
}

.beauty-page__list--items .head-box {
  text-align: center
}

.beauty-page__list--items .head-box h2 {
  font-size: 3.4rem;
  line-height: 4.9rem;
  color: #b29676;
  letter-spacing: .2em;
  margin-bottom: 1rem
}

.beauty-page__list--items .head-box p {
  font-size: 2.6rem;
  line-height: 3.7rem;
  font-weight: 700;
  color: #2e2e2e;
  letter-spacing: .2em;
  border-bottom: 2px solid #b29676;
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem
}

.beauty-page__list--items .card {
  display: grid;
  align-items: center;
  gap: 4.5rem;
  grid-template-columns: 52.8rem 1fr;
  margin-bottom: 8rem
}

.beauty-page__list--items .card figure {
  padding-right: 3rem;
  padding-bottom: 5.2rem;
  position: relative
}

.beauty-page__list--items .card figure::after {
  content: '';
  width: 48.3rem;
  height: 27.4rem;
  background: #f8f4f1;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1
}

.beauty-page__list--items .card__txt p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  color: #666;
  margin-bottom: 3rem
}

.beauty-page__list--items .card__txt p:last-child {
  margin-bottom: 0
}

.beauty-page__list--items .instagram {
  width: 100%;
  max-width: 58.5rem;
  margin: 0 auto 5.5rem
}

.beauty-page__list--items .group {
  width: 100%;
  max-width: 76.9rem;
  margin: 0 auto 4rem
}

.beauty-page__list--items .group h3 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  color: #b29676;
  margin-bottom: 2rem;
  text-align: center
}

.beauty-page__list--items .group h3 i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer
}

.beauty-page__list--items .group h4 {
  margin-bottom: 2.3rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: #2e2e2e
}

.beauty-page__list--items .group__txt {
  padding: 2rem 5.5rem;
  font-size: 1.2rem;
  line-height: 2.6rem;
  background: #f8f4f1;
  border-top: 1px solid #b29676;
  border-bottom: 1px solid #b29676
}

.beauty-page__list--items .group ul li {
  display: grid;
  align-items: center;
  gap: 5rem;
  grid-template-columns: 52rem 1fr;
  font-size: 1.2rem;
  line-height: 2rem;
  border-top: 1px solid #b29676
}

.beauty-page__list--items .group ul li span {
  padding: 1rem 4.5rem 1rem 8.5rem;
  min-height: 6rem;
  align-items: center;
  background: #f8f4f1;
  display: flex;
  align-items: center
}

.beauty-page__list--items .group ul li span .dis {
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: start;
  gap: .45rem;
  grid-template-columns: .6rem 1fr
}

.beauty-page__list--items .group ul li span .dis::before {
  content: '';
  width: .6rem;
  height: .6rem;
  background: #b29676;
  border-radius: 50%
}

.beauty-page__list--items .group ul li span .none::before {
  background: 0 0
}

.beauty-page__list--items .group ul li span.line {
  display: block
}

.beauty-page__list--items .group ul:last-child li:last-child {
  border-bottom: 1px solid #b29676
}

.beauty-page__list--items .group__des {
  background: #f8f4f1;
  padding: 2.5rem 6.5rem 2.5rem 8.5rem;
  font-size: 1.2rem;
  line-height: 2.6rem;
  border-top: 1px solid #b29676
}

.beauty-page__list--items .group__des ol li {
  font-size: 1.2rem;
  line-height: 2.6rem;
  position: relative;
  padding-left: 1.2rem
}

.beauty-page__list--items .group__des ol li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0
}

.beauty-page__list--items .group__des--list {
  display: grid;
  align-items: start;
  gap: 2rem
}

.beauty-page__list--items .group__des--list .items__labels {
  margin-bottom: .5rem
}

.beauty-page__list--items .group__des--list .items__labels span {
  display: inline-flex;
  justify-content: center;
  background: #b29676;
  color: #fff;
  text-align: center;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  line-height: 2.7rem;
  font-weight: 500;
  min-width: 24.5rem
}

.beauty-page__list--items .group__des--list .items p {
  font-size: 1.2rem;
  line-height: 2rem;
  margin-bottom: 0
}

.beauty-page__list--items .group__des--list .items p i {
  color: #b29676;
  cursor: pointer
}

.beauty-page__list--items .group__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #b29676;
  border-bottom: 1px solid #b29676;
  padding: 2rem 1rem
}

.beauty-page__list--items .group__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7rem;
  row-gap: 1rem
}
.beauty-page__list--items .group__nav.gap6 ul{
  gap: 6rem;
}

.beauty-page__list--items .group__nav ul li {
  border: none !important;
  align-items: center;
  justify-content: start;
  gap: .5rem;
  grid-template-columns: repeat(2, auto);
  font-size: 1.2rem;
  line-height: 2.8rem
}

.beauty-page__list--items .group__nav ul li::before {
  content: '';
  width: .6rem;
  height: .6rem;
  background: #b29676;
  border-radius: 50%
}

.beauty-page__list--items .group__tabels {
  border-top: 1px solid #b29676
}

.beauty-page__list--items .group__tabels--items {
  display: grid;
  align-items: center;
  grid-template-columns: 34.4rem 24.2rem 1fr;
  border-bottom: 1px solid #777
}

.beauty-page__list--items .group__tabels--items:first-child {
  background: #f8f4f1
}

.beauty-page__list--items .group__tabels--items p {
  font-size: 1.2rem;
  line-height: 2rem;
  text-align: center;
  padding: 1.5rem 2rem;
  margin: 0;
  min-height: 7.5rem;
  border-right: 1px solid #777;
  display: flex;
  justify-content: center;
  align-items: center
}

.beauty-page__list--items .group__tabels--items p:first-child {
  background: #f8f4f1;
  text-align: left;
  justify-content: flex-start;
  padding-left: 8rem
}

.beauty-page__list--items .group__tabels--items p.line {
  align-items: flex-start
}

.beauty-page__list--items .group__tabels--items p.line::before {
  margin-top: .7rem
}

.beauty-page__list--items .group__tabels--items p:last-child {
  border: none
}

.beauty-page__list--items .group__tabels.four-column .group__tabels--items {
  grid-template-columns: 24.4rem 14rem 20rem 1fr
}

.beauty-page__list--items .group__tabels.five-column .group__tabels--items {
  grid-template-columns: 24.4rem 12rem 13.5rem 13.5rem 1fr
}

.beauty-page__list--items .group .node {
  padding: 2rem 8rem;
  font-size: 1.2rem
}

.single-box {
  padding-bottom: 9rem
}

.single-box figure {
  margin-bottom: 3.5rem
}

.single-box figure img {
  width: 100%;
  height: auto
}

.single-box__head {
  margin-bottom: 4.5rem
}

.single-box__head time {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  line-height: 4.9rem
}

.single-box__head h2 {
  font-size: 2.6rem;
  font-weight: 400;
  color: #000
}

.single-box__content p {
  line-height: 2.8rem
}

.single-box__content p:last-child {
  margin-bottom: 0
}

.cta {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: none
}

.cta .inner {
  display: flex;
}

.cta a {
  display: block;
  width: 100%;
}

.footer {
  background: #b58957;
  padding: 4rem 0
}

.footer__main {
  text-align: center;
  color: #fff;
  font-weight: 500
}

@media (max-width:768px) {
  .footer {
    padding: 2rem 0;
    margin-bottom: 10rem
  }

  .footer__main {
    font-size: 1.2rem
  }
}

.sp {
  display: none
}

@media screen and (max-width:1200px) and (min-width:769px) {
  html {
    font-size: 9px
  }
}

@media screen and (max-width:1050px) and (min-width:769px) {
  html {
    font-size: 8px
  }
}

@media screen and (max-width:991px) and (min-width:769px) {
  html {
    font-size: 7px
  }
}

@media (max-width:768px) {
  html {
    font-size: 2.5641vw
  }

  .pc {
    display: none
  }

  .sp {
    display: block
  }

  .container {
    padding: 0 2rem
  }

  .banner {
    margin-bottom: 3.5rem;
    padding: 0
  }

  .banner::before {
    width: 22rem;
    height: 86rem
  }

  .banner::after {
    display: none
  }

  .banner .container {
    padding: 0
  }

  .banner__main--btn {
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 1.5rem 2rem 0
  }

  .banner__main--btn .txt__btn {
    gap: 2rem
  }

  .banner__main--btn .more {
    width: 100%;
    max-width: none;
    height: 5rem;
    font-size: 1.6rem
  }

  .banner__main--btn img {
    width: 100%
  }

  .news-box {
    padding: 1rem 1.1rem 0
  }

  .news-box::after {
    width: 19.5rem
  }

  .news-box__main {
    padding: 3.5rem 2rem;
    display: block
  }

  .news-box__main h2 {
    font-size: 3.2rem;
    padding-right: 0;
    padding-bottom: .6rem;
    border-bottom: 1px solid #b29676;
    display: inline-flex;
    margin-bottom: 1.2rem
  }

  .news-box__main--list {
    padding-left: 0;
    border-left: none;
    max-height: 34rem;
    padding-right: 2rem
  }

  .news-box__main--list .items {
    padding-bottom: 2rem;
    margin-bottom: 1.2rem;
    gap: 1rem;
    grid-template-columns: 1fr
  }

  .news-box__main--list .items time {
    font-size: 1.6rem;
    line-height: 2.4rem
  }

  .news-box__main--list .items p span {
    font-size: 1.4rem
  }

  .menu-box {
    padding: 2.5rem 0 3.3rem;
    overflow: hidden
  }

  .menu-box .container {
    padding: 0
  }

  .menu-box .head-box {
    padding: 0 2rem;
    margin-bottom: 3rem;
    gap: 1rem
  }

  .menu-box .head-box h2 {
    font-size: 3.2rem
  }

  .menu-box__main {
    padding: 1.5rem 2rem
  }

  .menu-box__main::after {
    background-image: url(../images/menu-bg_sp.webp)
  }

  .menu-box__main .slick-list {
    padding: 0
  }

  .menu-box__main--items {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    gap: 1.4rem
  }

  .price-box {
    padding-top: 4rem
  }

  .price-box__main--group h3 {
    line-height: 4rem;
    font-size: 1.4rem
  }

  .price-box__main--group ul li {
    grid-template-columns: 21.4rem 1fr;
    line-height: 4rem;
    font-size: 1.4rem
  }

  .price-box__main--group ul li span {
    line-height: 4rem
  }

  .introspection-box {
    padding-top: 4.5rem
  }

  .introspection-box__main {
    gap: 3rem;
    grid-template-columns: 1fr;
    position: relative
  }

  .introspection-box__main--txt .head-box {
    margin-bottom: 3rem;
    gap: 1rem
  }

  .introspection-box__main--txt .head-box h2 {
    font-size: 3.2rem
  }

  .introspection-box__main .thumb {
    overflow: auto;
    padding-bottom: 4.7rem
  }

  .introspection-box__main .thumb figure {
    width: 172rem
  }

  .information-box {
    padding: 6rem 0 7rem
  }

  .information-box__main {
    gap: 6rem;
    grid-template-columns: 1fr
  }

  .information-box__main .head-box {
    gap: 1rem
  }

  .information-box__main .head-box h2 {
    font-size: 3.2rem
  }

  .information-box__main--txt .calenda {
    margin-bottom: 2rem;
    gap: 1.2rem
  }

  .information-box__main--flow .group ul li {
    gap: 4.5rem;
    font-size: 1.6rem;
    line-height: 2.4rem
  }

  .information-box__main--flow .group ul li span {
    gap: 2.2rem;
    font-size: 1.6rem;
    line-height: 2.4rem
  }

  .means-box {
    padding-bottom: 4rem
  }

  .means-box__main--items .head {
    padding: 0 2rem
  }

  .means-box__main--items .group {
    padding: 0 2rem;
    gap: 2rem;
    grid-template-columns: 1fr
  }

  .means-box__main--items ul {
    padding: 0 2rem;
    gap: 2rem
  }

  .clinic-box {
    padding: 5rem 0
  }

  .clinic-box__main {
    gap: 4rem;
    grid-template-columns: repeat(1, 1fr)
  }

  .clinic-box__main h3 {
    font-size: 3.2rem
  }

  .clinic-box__main--contact h3 {
    margin-bottom: 2rem
  }

  .clinic-box__main--contact .btn {
    gap: 3rem
  }

  .clinic-box__main--menu h3 {
    margin-bottom: 1rem
  }

  .clinic-box__main--menu ul li a {
    font-size: 1.4rem;
    line-height: 2rem
  }

  .clinic-box__main--about h3 {
    margin-bottom: 1.2rem
  }

  .clinic-box__main--about p {
    margin-bottom: 2rem;
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: .15em
  }

  .clinic-box__main--about .more {
    width: 15.6rem;
    height: 4.4rem;
    font-size: 1.4rem
  }

  .clinic-box__main--about .more::before {
    width: 1.6rem
  }

  .banner-page__main {
    height: 20.2rem;
    justify-content: start !important;
    text-align: left !important
  }

  .banner-page__main h1 {
    margin-bottom: 1rem;
    font-size: 3.6rem;
    line-height: 5.2rem
  }

  .banner-page__main p {
    font-size: 2.4rem
  }

  .site-content {
    padding-top: 4rem;
    padding-bottom: 12rem
  }

  .list-post {
    column-gap: 0;
    row-gap: 4rem;
    grid-template-columns: repeat(1, 1fr)
  }

  .list-post__items figure {
    margin-bottom: 2rem
  }

  .page-numbers {
    padding-top: 6rem
  }

  .beauty-page__main {
    margin-bottom: 5rem
  }

  .beauty-page__main--head {
    text-align: left;
    margin-bottom: 2.5rem
  }

  .beauty-page__main--head h2 {
    padding-bottom: .8rem;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    line-height: 3.5rem
  }

  .beauty-page__main--head h2::after {
    width: 6.8rem
  }

  .beauty-page__main--head p {
    font-size: 1.8rem;
    line-height: 2.8rem
  }

  .beauty-page__main--content {
    align-items: start;
    gap: 3rem;
    grid-template-columns: 1fr
  }

  .beauty-page__main--content figure {
    padding-right: 0;
    padding-bottom: 3rem
  }

  .beauty-page__main--content figure::after {
    width: 32.1rem;
    height: 32.8rem;
    right: -2rem
  }

  .beauty-page__main--content .text .txt {
    margin-bottom: 2.5rem
  }

  .beauty-page__main--content .text .group {
    margin-bottom: 2.5rem
  }

  .beauty-page__main--content .text .group h3 {
    gap: 1.2rem;
    padding: 0 2.5rem;
    line-height: 3rem;
    font-size: 1.2rem
  }

  .beauty-page__main--content .text .group ul li {
    gap: .6rem;
    grid-template-columns: 24.4rem 1fr;
    line-height: 3rem
  }

  .beauty-page__main--content .text .group ul li span {
    padding: 0 2.5rem
  }

  .beauty-page__main--content .text .group ul li span::before {
    width: .3rem;
    height: .3rem
  }

  .beauty-page__main--content .text .group p {
    padding: 0 2.5rem
  }

  .beauty-page__main--content .text .btn .more {
    font-size: 1.2rem;
    line-height: 1.6rem;
    padding: 1rem 0
  }

  .beauty-page__permanent--des {
    background: 0 0;
    padding: 0;
    margin-bottom: 2rem
  }

  .beauty-page__permanent--des p {
    font-size: 1.6rem;
    text-align: left
  }

  .beauty-page__permanent--des .group {
    gap: 2rem;
    grid-template-columns: 1fr
  }

  .beauty-page__permanent--des .group figure {
    width: 20rem;
    margin: 0 auto
  }

  .beauty-page__permanent--des .group__btn a {
    font-size: 1.2rem
  }

  .beauty-page__permanent--group {
    padding: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem
  }

  .beauty-page__permanent--group .items:nth-child(2) {
    width: 100%
  }

  .beauty-page__btn {
    padding: 2rem 0;
    margin-bottom: 5rem;
    justify-content: start;
    grid-template-columns: repeat(1, 1fr)
  }

  .beauty-page__beforeafter {
    padding: 0;
    margin-bottom: 8rem
  }

  .beauty-page__beforeafter--items {
    margin-bottom: 4rem
  }

  .beauty-page__beforeafter--items h2 {
    font-size: 1.6rem;
    text-align: left;
    padding: 0 3.5rem
  }

  .beauty-page__beforeafter--items h3 i {
    right: auto;
    left: 0
  }

  .beauty-page__beforeafter--items .group {
    grid-template-columns: 1fr
  }

  .beauty-page__beforeafter--items .tabels__rows {
    gap: 1.5rem;
    grid-template-columns: 24.4rem 1fr;
    line-height: 2.4rem;
    font-size: 1.3rem
  }

  .beauty-page__beforeafter--items .tabels__rows--labels {
    padding: 1.8rem 2rem;
    min-height: 5rem
  }

  .beauty-page__beforeafter--items .text {
    padding: 2rem
  }

  .beauty-page__beforeafter--items .faq__items--q {
    padding: 1rem 4rem 1rem 1rem;
    line-height: 1.5
  }

  .beauty-page__beforeafter--items .faq__items--a {
    padding: 1rem 1rem 1rem 5.2rem;
    position: relative;
    border-top: 1px solid #b29676;
    font-size: 1.2rem;
    line-height: 2.6rem
  }

  .beauty-page__beforeafter--items .faq__items--a::before {
    content: '';
    width: 2.701rem;
    height: 2.701rem;
    background-image: url(../images/a.webp);
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 1rem;
    left: 1rem
  }

  .beauty-page__list {
    gap: 5rem;
    grid-template-columns: 35rem
  }

  .beauty-page__list--items .head-box {
    gap: 1.2rem;
    text-align: left
  }

  .beauty-page__list--items .head-box h2 {
    font-size: 2.4rem;
    line-height: 3.5rem;
    letter-spacing: .12em
  }

  .beauty-page__list--items .head-box p {
    font-size: 2.4rem;
    line-height: 2.8rem;
    letter-spacing: .12em
  }

  .beauty-page__list--items .head-box p.line {
    align-items: start
  }

  .beauty-page__list--items .head-box p.line::before {
    margin-top: 1.2rem
  }

  .beauty-page__list--items .card {
    align-items: start;
    gap: 3.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem
  }

  .beauty-page__list--items .card figure {
    padding-right: 0;
    padding-bottom: 4rem
  }

  .beauty-page__list--items .card figure::after {
    width: 32rem;
    height: 23.2rem;
    right: -2rem
  }

  .beauty-page__list--items .instagram {
    max-width: none;
    margin: 0 auto 4rem
  }

  .beauty-page__list--items .group {
    margin: 0 auto 3rem
  }

  .beauty-page__list--items .group h3 {
    gap: 1.5rem;
    padding: 0;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 3.5rem
  }

  .beauty-page__list--items .group h3 i {
    right: auto;
    left: 0
  }

  .beauty-page__list--items .group h4 {
    font-size: 1.6rem
  }

  .beauty-page__list--items .group__txt {
    padding: 1.5rem 1.5rem
  }

  .beauty-page__list--items .group__txt h4 {
    font-size: 1.8rem;
    line-height: 2.9rem;
    font-weight: 600;
    color: #b29676
  }

  .beauty-page__list--items .group__txt.node {
    padding: 1.5rem 0
  }

  .beauty-page__list--items .group ul li {
    gap: 1.5rem;
    grid-template-columns: 23rem 1fr;
    line-height: 2.4rem;
    font-size: 1.3rem
  }

  .beauty-page__list--items .group ul li span {
    padding: 1.8rem 2rem;
    min-height: 5rem
  }

  .beauty-page__list--items .group ul li span.line::before {
    margin-top: .8rem
  }

  .beauty-page__list--items .group ul li span.sp-line {
    align-items: start
  }

  .beauty-page__list--items .group ul li span.sp-line::before {
    margin-top: .7rem
  }

  .beauty-page__list--items .group__des {
    padding: 3rem 1.5rem
  }

  .beauty-page__list--items .group__des ol li {
    font-size: 1.3rem
  }

  .beauty-page__list--items .group__nav {
    gap: 6rem;
    padding: 2rem 0 2rem 3.5rem
  }

  .beauty-page__list--items .group__nav ul,
  .beauty-page__list--items .group__nav.gap6 ul {
    gap: .8rem;
    justify-content: start;
    align-items: start
  }

  .beauty-page__list--items .group__nav ul li {
    width: calc(50% - .4rem);
    gap: .5rem;
    grid-template-columns: repeat(2, auto);
    align-items: start;
    font-size: 1.2rem;
    letter-spacing: .06em;
    line-height: 2.4rem
  }

  .beauty-page__list--items .group__nav ul li::before {
    margin-top: .8rem
  }

  .beauty-page__list--items .group__nav main {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6rem;
    row-gap: .8rem
  }

  .beauty-page__list--items .group__nav.group__nav-sp {
    padding: 0;
    display: block
  }

  .beauty-page__list--items .group__nav.group__nav-sp ul {
    gap: 0;
    display: block
  }

  .beauty-page__list--items .group__nav.group__nav-sp ul li {
    width: 100%;
    display: block;
    background: #f8f4f1;
    padding: 0 4rem;
    line-height: 5.4rem;
    color: #2e2e2e;
    border-bottom: 1px solid #b29676 !important
  }

  .beauty-page__list--items .group__nav.group__nav-sp ul li::before {
    display: none
  }

  .beauty-page__list--items .group__nav.group__nav-sp ul li:last-child {
    border-bottom: none !important
  }

  .beauty-page__list--items .group__tabels--items {
    grid-template-columns: 17.4rem 10rem 1fr
  }

  .beauty-page__list--items .group__tabels--items p {
    padding: 1rem .5rem
  }

  .beauty-page__list--items .group__tabels--items p:first-child {
    padding-left: 1rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels {
    width: 48rem;
    padding-bottom: 2rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels .group__tabels--items {
    grid-template-columns: 14.8rem 20.1rem 16.2rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels .group__tabels--items p {
    min-height: 6rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels.four-column {
    width: 76.9rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels.four-column .group__tabels--items {
    grid-template-columns: 24.4rem 14rem 20rem 1fr
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels.five-column {
    width: 58.1rem
  }

  .beauty-page__list--items .group.sp-overflow-auto .group__tabels.five-column .group__tabels--items {
    grid-template-columns: 15rem 7rem 10.8rem 11.5rem 1fr
  }

  .beauty-page__list--items .group .node {
    padding: 2rem 0
  }

  .cta {
    display: block
  }
}