/* =================================
 Reset / Base
================================= */
/* Reset
---------------------------------------------------------- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: 400;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
}

th,
td {
  background-clip: padding-box;
}

/* base
---------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: none;
}

body {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  line-height: 1.8;
  background-color: #fff;
  color: #5f5f5f;
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.05em;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
body.no-scroll {
  overflow: hidden;
}

img {
  border-style: none;
  display: block;
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

a,
a img,
button {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  opacity: 0.7;
}

a:link {
  color: #5f5f5f;
  text-decoration: none;
}

a:visited {
  color: #5f5f5f;
}

a:active {
  color: #5f5f5f;
}

/* common
---------------------------------------------------------- */
.u-only_sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-only_sp {
    display: block !important;
  }
}

.u-only_pcMin {
  display: none !important;
}
@media screen and (max-width: 1240px) {
  .u-only_pcMin {
    display: block !important;
  }
}

.u-only_tabSp {
  display: none !important;
}
@media screen and (max-width: 1120px) {
  .u-only_tabSp {
    display: block !important;
  }
}

.u-only_pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-only_pc {
    display: none !important;
  }
}

.u-clr_ylw {
  color: #d4a91c;
}

.u-fw_b {
  font-weight: bold;
}

/* header
---------------------------------------------------------- */
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    height: 80px;
  }
}
.l-header.open .l-header_seo {
  opacity: 0;
}
.l-header.open .l-header_logo {
  opacity: 0;
}
.l-header.open .l-header_logo a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .l-header.scroll-in {
    margin-top: -20px;
  }
  .l-header.scroll-in .l-header_menu {
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.scroll-in.open .l-header_gnav {
    padding: 14px 0 140px 9px;
  }
}
.l-header_cont {
  padding: 16px 0 0 33px;
}
@media screen and (min-width: 768px) {
  .l-header_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_cont {
    padding: 16px 16px 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_cont {
    padding: 0 5px 0 9px;
  }
}
@media screen and (min-width: 768px) {
  .l-header_seo {
    z-index: 99999;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_seo {
    top: 12px;
    left: 15px;
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .l-header_seo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 20px;
    padding: 0 8px;
    overflow-y: hidden;
    background-color: #f6f7f9;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
.l-header_seo_txt {
  display: block;
  line-height: 1;
  color: #9d9387;
  font-size: 11px;
  font-size: 1.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-header_seo_txt {
    color: #656565;
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-header_logo {
  width: 160px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .l-header_logo {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_logo {
    width: 28.66vw;
  }
}
.l-header_logo a {
  display: block;
  margin-top: 10px;
}
.l-header_logo_wht {
  display: none;
}
.l-header_logo_color {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header_side {
    position: absolute;
    z-index: 10000;
    top: 26px;
    right: 5px;
  }
}
@media screen and (min-width: 768px) {
  .l-header_side_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (min-width: 1101px) {
  .l-header_tel {
    margin-right: 31px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_tel {
    margin-right: 20px;
  }
}
.l-header_tel_link {
  text-align: right;
}
.l-header_tel_link_wht {
  display: none;
}
.l-header_tel_link_brw {
  display: block;
}
.l-header_tel_link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.l-header_tel_link a img {
  width: 15px;
  margin: 5px 10px 0 0;
}
.l-header_tel_link_num {
  display: block;
  line-height: 1;
  color: #5b382f;
  font-family: "Shippori Mincho", serif;
  font-size: 32px;
  font-size: 3.2rem;
}
.l-header_tel_txt {
  line-height: 1;
  margin-top: 12px;
  color: #5b382f;
  font-family: "Shippori Mincho", serif;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
}
.l-header_reserve {
  width: 110px;
  height: 110px;
  position: fixed;
  top: 0;
  right: 110px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header_reserve {
    width: 60px;
    height: 60px;
  }
}
.l-header_reserve a {
  display: block;
  height: 100%;
  padding: 23px 0 0;
  font-weight: 700;
  background-color: #dab94d;
}
.l-header_reserve a img {
  width: 42px;
  margin: 0 auto;
}
.l-header_reserve_txt {
  display: block;
  line-height: 1.2;
  margin-top: 8px;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
}
.l-header_menu {
  z-index: 10000;
  width: 110px;
  height: 110px;
  background-color: #222;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .l-header_menu {
    top: 20px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.l-header_menu span {
  position: absolute;
  z-index: 0;
  left: 50%;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .l-header_menu span {
    height: 1px;
    background-color: #9d9387;
  }
}
.l-header_menu span:nth-child(1) {
  top: 31px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(1) {
    top: 19px;
    width: 28px;
  }
}
.l-header_menu span:nth-child(2) {
  top: 44px;
  width: 28px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(2) {
    top: 28px;
    width: 28px;
  }
}
.l-header_menu span:nth-child(3) {
  top: 57px;
  width: 40px;
}
@media screen and (max-width: 767px) {
  .l-header_menu span:nth-child(3) {
    top: 39px;
    width: 28px;
  }
}
.l-header_menu_txt {
  font-weight: 600;
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 25px;
  width: 100%;
  line-height: 1;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-header_menu_txt {
    bottom: 12px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.l-header_menu.active {
  top: 0;
}
.l-header_menu.active span {
  top: 42px;
  left: 28px;
}
@media screen and (max-width: 767px) {
  .l-header_menu.active span {
    top: 27px;
    left: 16px;
  }
}
.l-header_menu.active span:nth-child(1) {
  width: 48px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-header_menu.active span:nth-child(1) {
    width: 28px;
  }
}
.l-header_menu.active span:nth-child(2) {
  opacity: 0;
}
.l-header_menu.active span:nth-child(3) {
  width: 48px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-header_menu.active span:nth-child(3) {
    width: 28px;
  }
}
.l-header_gnav {
  position: fixed;
  z-index: 1000;
  top: -100%;
  right: 0;
  width: 100%;
  padding: 134px 0 100px;
  background-color: #414141;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .l-header_gnav {
    height: 100vh;
    padding: 16px 20px 100px;
    overflow-y: scroll;
  }
}
.l-header_gnav.open {
  top: 0;
  opacity: 1;
  pointer-events: inherit;
}
.l-header_gnav_logo {
  width: 180px;
}
@media screen and (min-width: 768px) {
  .l-header_gnav_logo {
    position: absolute;
    z-index: 10000;
    top: 30px;
    left: 33px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_gnav_logo {
    width: 28.66vw;
    margin-bottom: 0;
  }
  .l-header_gnav.open .c-btn_reserve_txt {
    line-height: 1.5;
  }
}
.l-header_gnav_logo a {
  display: block;
}
.l-header_gnav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .l-header_gnav_list {
    padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_gnav_list .l-footer_right_nav {
    display: block;
  }
}
.l-header_gnav_btm {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .l-header_gnav_btm {
    margin: 30px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .l-header_gnav_btm_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .l-header_gnav_btm_row .c-btn_reserve {
    width: 340px;
  }
}
@media screen and (max-width: 767px) {
  .l-header_gnav_btm_row .c-btn_reserve {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
.l-header_gnav_btm_add, .l-header_gnav_btm_hour {
  color: #222;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header_gnav .c-btn_reserve {
    width: 420px;
  }
}

/* layout
---------------------------------------------------------- */
#l-wrap {
  overflow-x: hidden;
}

.l-main {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 80px;
  }
}

.l-page {
  padding-top: 84px;
  overflow: hidden;
  padding-bottom: 95px;
}
@media screen and (max-width: 767px) {
  .l-page {
    padding-top: 40px;
  }
}
.l-page_l {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page_l {
    padding-top: 50px;
  }
}
.l-page_l:first-of-type {
  padding-top: 0;
}
.l-page_m {
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page_m {
    padding-top: 35px;
  }
}
.l-page_m:first-of-type {
  padding-top: 0;
}
.l-page_s {
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page_s {
    padding-top: 20px;
  }
}
.l-page_s:first-of-type {
  padding-top: 0;
}
.l-page_ss {
  padding-top: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .l-page_ss {
    padding-top: 10px;
  }
}
.l-page_ss:first-of-type {
  padding-top: 0;
}

.l-cont_xl {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_xl {
    max-width: 1320px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_xl {
    width: calc(100% - 40px);
  }
}
.l-cont_l {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_l {
    max-width: 1240px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_l {
    width: calc(100% - 40px);
  }
}
.l-cont_m {
  width: 94%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_m {
    max-width: 1140px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_m {
    width: calc(100% - 40px);
  }
}
.l-cont_s {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_s {
    max-width: 1000px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_s {
    width: calc(100% - 40px);
  }
}
.l-cont_ss {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-cont_ss {
    max-width: 1020px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-cont_ss {
    width: calc(100% - 40px);
  }
}
@media screen and (min-width: 768px) {
  .l-cont_column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .l-cont_column_main {
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .l-cont_column_side {
    width: 30%;
  }
}
@media screen and (max-width: 1023px) {
  .l-cont_column_side {
    margin-top: 40px;
  }
}
.l-bg_wht, .l-bg_grad {
  padding: 90px 0 120px;
}
@media screen and (max-width: 767px) {
  .l-bg_wht, .l-bg_grad {
    padding: 45px 0 60px;
  }
}
.l-bg_grad {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgb(244, 230, 218)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(244, 230, 218) 100%);
}

/* footer
---------------------------------------------------------- */
.l-footer {
  padding: 78px 0 38px;
  background-color: #414141;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 42px 20px 96px;
  }
}
.l-footer_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .l-footer_cont {
    padding-bottom: 34px;
  }
}
.l-footer_logo {
  padding-top: 30px;
  width: 124px;
  display: block;
}
.l-footer_logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer_logo {
    width: 66px;
    padding-top: 0;
  }
}
.l-footer_right {
  display: inline-block;
}
.l-footer_right_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-footer_right_nav {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .l-footer_right_nav_cont:first-child {
    margin-right: 9.3vw;
  }
}
@media screen and (max-width: 767px) {
  .l-footer_right_nav_cont:first-child {
    margin-bottom: 24px;
  }
}
.l-footer_right_nav_list + .l-footer_right_nav_list {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .l-footer_right_nav_list + .l-footer_right_nav_list {
    margin-top: 24px;
  }
}
.l-footer_right_nav_list_item {
  margin-bottom: 5px;
}
.l-footer_right_nav_list_item::before {
  content: "- ";
  color: #fff;
}
.l-footer_right_nav_list_item a {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer_right_nav_list_item a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.l-footer_copyright {
  text-align: right;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer_copyright {
    font-size: 11px;
    font-size: 1.1rem;
    text-align: center;
  }
}
.l-footer_pagetop {
  display: none;
  position: fixed;
  z-index: 1000;
  right: 60px;
  bottom: 60px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #414141;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer_pagetop.move {
  display: block;
}
.l-footer_pagetop span {
  font-size: 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer_pagetop {
    display: none;
  }
}
.l-footer_fixed {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer_fixed {
    display: none !important;
  }
}
.l-footer_fixed_cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-footer_fixed_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 60px);
}
.l-footer_fixed_reserve {
  width: 100%;
  background-color: #dab94d;
}
.l-footer_fixed_reserve a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.l-footer_fixed_reserve a span {
  line-height: 1;
}
.l-footer_fixed_reserve a img {
  width: 24px;
  margin: 0 10px 0 0;
}
.l-footer_fixed_reserve_txt {
  display: block;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
}
.l-footer_fixed_pagetop {
  position: relative;
  z-index: 0;
  width: 60px;
  height: 60px;
  background-color: #414141;
}
.l-footer_fixed_pagetop span {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  font-size: 24px;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* seo
---------------------------------------------------------- */
.l-seo {
  padding: 90px 0 0;
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-seo {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.l-seo a {
  text-decoration: underline !important;
}
.l-seo_box {
  border: 1px solid #c2bdbd;
  padding: 32px 28px 32px 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-seo_box {
    padding: 28px 18px 28px 20px;
  }
}
.l-seo_box .c-ttl_spl {
  color: #fff;
}
.l-seo_cont {
  height: 280px;
  overflow-y: scroll;
  padding-right: 25px;
  background-color: #fff;
  scrollbar-width: thin;
  scrollbar-color: #9d9387 #efefef;
}
@media screen and (max-width: 767px) {
  .l-seo_cont {
    height: 200px;
    padding-right: 15px;
  }
}
.l-seo_cont::-webkit-scrollbar {
  width: 2px;
}
.l-seo_cont::-webkit-scrollbar-track {
  border-radius: 1px;
  background-color: #efefef;
}
.l-seo_cont::-webkit-scrollbar-thumb {
  background-color: #9d9387;
}
@media screen and (max-width: 767px) {
  .l-seo_single {
    height: 200px;
    padding-right: 15px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #dab94d #f3f3f3;
  }
  .l-seo_single::-webkit-scrollbar {
    width: 2px;
  }
  .l-seo_single::-webkit-scrollbar-track {
    border-radius: 1px;
    background-color: #f3f3f3;
  }
  .l-seo_single::-webkit-scrollbar-thumb {
    background-color: #dab94d;
  }
}
.l-seo_item {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-seo_item {
    margin-top: 15px;
  }
}
.l-seo_item:first-child {
  margin-top: 0;
}
.l-seo_item_cont {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-seo_item_cont {
    margin-top: 15px;
  }
}
.l-seo_item_cont:first-child {
  margin-top: 0;
}
.l-seo_item .c-list_midpoint li {
  margin-top: 0 !important;
  font-weight: 400 !important;
}
.l-seo_item_ttl {
  margin-bottom: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.l-seo_ttl {
  margin-bottom: 20px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-seo_ttl {
    margin-bottom: 13px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.l-seo_ttl_top {
  margin-bottom: 49px;
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-seo_ttl_top {
    margin-bottom: 30px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.p-index_group {
  padding: 90px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-index_group {
    padding: 46px 0 60px;
  }
}
.p-index_group_ttl {
  text-align: right;
  margin-bottom: 30px;
  padding-right: 3.47vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-index_group_ttl {
    margin-bottom: 22px;
    padding-right: 0;
  }
}
.p-index_group_ttl .-en {
  font-family: "Outfit", sans-serif;
  font-size: 140px;
  font-size: 14rem;
  line-height: 1;
  color: #edeeea;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-index_group_ttl .-en {
    font-size: 55px;
    font-size: 5.5rem;
  }
}
.p-index_group_ttl .-jp {
  margin-top: 12px;
  line-height: 1.4;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-index_group_ttl .-jp {
    margin-top: 6px;
    font-size: 5vw;
  }
}
.p-index_group_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-index_group_list li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .p-index_group_list li {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-index_group_list li:not(:last-child) {
    margin-bottom: 45px;
  }
}
.p-index_group_list_txt {
  padding: 0 16px;
  margin-top: 20px;
}
.p-index_group_list_txt .-ttl {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 24px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_txt .-ttl {
    font-size: 17px;
    font-size: 1.7rem;
    margin-bottom: 18px;
  }
}
.p-index_group_list_tbl {
  width: 100%;
  border-top: 1px dotted #9d9387;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_tbl {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.p-index_group_list_tbl tr th,
.p-index_group_list_tbl tr td {
  padding: 16px 8px 12px 8px;
  vertical-align: top;
  border-bottom: 1px dotted #9d9387;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_tbl tr th,
  .p-index_group_list_tbl tr td {
    padding: 10px 6px 10px 6px;
    font-size: 12px;
  }
}
.p-index_group_list_tbl tr th {
  padding-right: 0;
  width: 26%;
}
.p-index_group_list_tbl tr td {
  width: 74%;
}
.p-index_group_list_map {
  margin-top: 40px;
  height: 270px;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_map {
    margin-top: 30px;
    height: 200px;
  }
}
.p-index_group_list_map iframe {
  width: 100%;
  height: 100%;
}
.p-index_group_list_btn {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_btn {
    margin-top: 15px;
  }
}
.p-index_group_list_btn .-btn {
  display: block;
  width: 48.5%;
  border: 1px solid #9d9387;
  line-height: 44px;
  height: 46px;
  text-align: center;
  color: #222;
  border-radius: 25px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 11180px) {
  .p-index_group_list_btn .-btn {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-index_group_list_btn .-btn {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 32px;
    height: 34px;
  }
}
.p-index_group_list_about {
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .p-index_group_list_about {
    margin-top: 15px;
  }
}
.p-index_group_list_about .-btn {
  display: block;
  border: 1px solid #9d9387;
  background-color: #9d9387;
  line-height: 44px;
  height: 46px;
  text-align: center;
  color: #fff;
  border-radius: 25px;
  font-size: 15px;
  font-size: 1.5rem;
}
@media screen and (max-width: 11180px) {
  .p-index_group_list_about .-btn {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: -0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-index_group_list_about .-btn {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 32px;
    height: 34px;
  }
}
.p-index_note {
  padding: 10px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-index_note {
    padding: 0 0 60px;
  }
}
.p-index_note_inner {
  border: 1px solid #c2bdbd;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-index_note_inner {
    padding: 20px;
  }
}
.p-index_note_inner .c-btn_base {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-index_note_inner .c-btn_base {
    margin-top: 20px;
  }
}
.p-index_note_ttl {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-index_note_ttl {
    text-align: center;
    margin-bottom: 20px;
  }
  .pc {
    display: none !important;
  }
}
.p-index_note_list {
  margin-left: 20px;
  margin-bottom: 20px;
}
.p-index_note_list li {
  line-height: 1.4;
}
.p-index_note_list li:not(:last-child) {
  margin-bottom: 0.5em;
}
.p-index_note_list > li {
  list-style-type: decimal;
}
.p-index_note_list_sub {
  margin-left: 10px;
}
.p-index_note_list_sub li:first-child {
  margin-top: 0.5em;
}
.p-index_note_list_note li {
  font-size: 0.8em;
}


.p-thoughts {
    padding: 12rem 0;
    position: relative;
    z-index: 1;
	background:#fff;
}
	.p-thoughts:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 63.1rem;
    z-index: -1;
    background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/thoughts_photo01.webp) no-repeat center top / cover;
    content: "";
}
	.p-thoughts__content {
    max-width: 90rem;
}
	.c-content {
    margin: 0 auto;
    max-width: 96rem;
}
	.p-thoughts__ttl {
    margin-bottom: 2.5rem;
    color: #000;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
}
	.c-headline01__jp {
    margin-bottom: 1.7rem;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.59;
    font-family: "Shippori Mincho", serif;
    text-align: center !important;
    letter-spacing: 0.01em;
}

	.p-thoughts__sub {
    padding: 4.8rem 7.3rem;
    background-color: #fff;
    border-top: 0.6rem solid #dab94d;
}
	.c-headline02 {
    margin-bottom: 5rem;
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.15em;
    font-family: "Shippori Mincho", serif;
    color: var(--gray-black);
    text-align: center;
}
	.p-thoughts__list {
    margin-bottom: 2.5rem;
    display: flex;
	justify-content:space-around;
}
	.p-thoughts__list-photo img {
    width: 18rem;
    border-radius: 50%;
}
	.p-thoughts__list-ttl {
    color: #000;
    font-size: 1.6rem;
    line-height: 1.88;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-align: center;
}
	.p-thoughts__txt {
    margin-bottom: 7rem;
    line-height: 2;
    text-align: center;
}
	.reserve {
    display: flex;
    justify-content: center;
    gap: 30px;
}
	.c-btn02__link {
    display: inline-block;
    position: relative;
    color:#fff;
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 2rem 7rem;
    background-color: #dab94d;
    box-sizing: border-box;
}
	.c-btn02__link.p-thoughts__btn-link{
		border-radius:50px;
	}
	.c-btn02__link-arrow {
    right: 2.4rem;
}
	.c-arrow {
    position: absolute;
    right: 3.8rem;
    top: 0;
    width: 2.4rem;
    height: 100%;
    overflow: hidden;
}
	.c-arrow:after {
    position: absolute;
    margin-top: -0.4rem;
    width: 2.4rem;
    height: 0.7rem;
    display: block;
    top: 50%;
    left: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    background: url(../img/arrow_icon01.svg) no-repeat left top / 2.4rem auto;
    content: "";
}
	@media(max-width:768px){
		.p-thoughts {
        padding: 2.5rem 0 6rem;
    }
		    .p-thoughts:before {
        height: 20.9rem;
    }
		.c-content {
        margin: 0 2rem;
        width: auto !important;
    }
		.reserve {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
		align-items: center;
    }
		.p-thoughts__sub {
       padding: 0.8rem 0rem 0rem;
        border-top-width: .5rem;
    }
		    .p-thoughts__list {
        margin: 0 0.3rem 5rem;
        display: block;
    }
		.p-thoughts__list-item {
        margin: 0 0 0.9rem;
        width: auto;
        display: flex;
        align-items: center;
        text-align: left;
    }
		    .p-thoughts__list-photo img {
        width: 100%;
    }
		.p-thoughts__list-ttl {
        font-size: 1.5rem;
        line-height: 2;
        font-weight: 600;
        text-align: left;
    }
		.c-headline02 {
        margin-bottom: 3.3rem;
        letter-spacing: 0.06em;
        font-size: 1.8rem;
    }
		.p-thoughts__list-photo {
        margin: 0 1.4rem 0 0;
        width: 11rem;
    }
		.p-thoughts__txt {
    margin-bottom: 4rem;
     line-height: 2;
        text-align: left;
}
	}
	


	
.l-trouble {
     background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/l-trouble-bg2.webp) no-repeat center top / cover;
    padding: 0;
    position: relative;
    overflow-x: clip;
    margin-top: 0;
}
		.l-trouble__title span {
    font-size: 4.4rem;
    font-weight: 700;
    line-height: 1.2;
	color: #DAB94D;
}
		.trouble {
  position: relative;
 
  padding-bottom:5rem;
}
		
.l-trouble__title {
    width: 70rem;
    height: 18rem;
    border-radius: 10rem;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--main-dark);
    font-family: var(--sub-font);
    font-size: 2.4rem;
    line-height: 1.56;
    letter-spacing: 0.05em;
    position: relative;
    top: -11rem;
    margin: 0 auto -6rem auto;
    z-index: 2;
}
.l-trouble__title::after {
    content: "";
    background: var(--white);
    width: 3.2rem;
    height: 1.8rem;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 50%;
    bottom: -1.7rem;
    transform: translate(-50%, 0);
    z-index: 1;
}
		.trouble .textList {
    margin: 0 auto 8.1rem;
    max-width: 80rem;
    display: flex;
    justify-content: space-between;
}

.l-trouble__en {
    font-family: var(--en-font);
    font-size: 15rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    position: absolute;
    top: 30%;
    left: 0;
    transform: translate(0, -50%);
    writing-mode: vertical-rl;
    padding-top: 0.2em;
    background: #d8d1c8;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.imgBox {
    margin: 0 0 10rem auto;
    padding-left: 7rem;
    width: calc(100% - ((100% - 100rem) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10rem 0 0 10rem;
    box-sizing: border-box;
    background-color: #fff;
    position: relative;
	gap:30px;
	margin-top: 8rem;
}

/* 文字・画像すべて */
.trouble .content,
.trouble h3,
.trouble .photo,
.trouble .imgBox,
.trouble center {
  position: relative;
  z-index: 1;
}
		.textList li {
    padding: 0 1rem 1rem 1rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.textList-icon{
			width: 28px;
			height: 24px;
		}
		.textList{
			margin: 2rem 0;
			display: flex;
			justify-content: center;
		}
	.linkList {
	width: 59.48%;
}
.linkList li a {
	padding: 4.7rem 3.2rem;
	display: block;
	position: relative;
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 2.2rem;
	box-sizing: border-box;
	background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/occuration.png) no-repeat right center / cover;
	transition: none;
}
		.linkList li a::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #84724d;
	content: '';
	opacity: 0;
	transition: .3s;
}
		

.linkList li:nth-of-type(2) a {
	background-image: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/imp.png);
}
.linkList li a span {
	position: relative;
}
.linkList li a .pho {
	margin-right: 25px;
	width: 106px;
}
.linkList li a .txt {
	padding-right: 25px;
	min-width: 182px;
	position: relative;
	box-sizing: border-box;
	background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/icon04.webp) no-repeat right center / 22px auto;
	font-weight: bold;
}
.linkList li a .txt {
	background-image: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/icon04.webp);
}
.linkList li a small {
	font-size: 1.5rem;
	display: block;
}
		
		.textBox p {
    font-size: 2.2rem;
    line-height: 2;
    letter-spacing: 0.02em;
	font-family: "Shippori Mincho", serif;
 
}
		.content{
			text-align: center;
		}
		.text-rev span{
			color: #fff;
			font-size: 3.5rem;
			font-family: "Shippori Mincho", serif;
			font-weight: bold;
		}
		.text-rev::after{
    width: 15px;
    height: 57px;
    position: absolute;
    left: 50%;
    bottom: 570px;
    transform: translateX(-50%);
    background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/trouble_bg09.png) no-repeat center center / cover;
    content: '';
}
		.p-index_contact_inner {
    background-image: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/index/bg_reserve.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 64px 60px 95px;
}
		.p-index_contact,
.p-index_contact_inner {
  position: relative;
  z-index: 2;
}
		
		
		
		@media(max-width:768px){
		.linkList li a .pho{
		display:none;
		}
		.p-index_contact_ttl_sub {
    display: block;
    font-size: 1.3rem;
}
			.l-trouble__title {
        width: 100%;
        height: 14rem;
        font-size: 2rem;
        font-weight: 500;
        top: -8.6rem;
        margin: 0 auto -7.6rem auto;
    }
			.l-trouble__title  h2{
				font-size: 2rem;
			}
			.l-trouble__title  h2 span{
				font-size: 3rem;
			
		}
			.trouble {
        padding: 57px 0 0;
        position: relative;
        background-size: 100% auto, 100% auto;
        background-position: center top 380px, center bottom 100px;
    }
			.trouble .textList  {
        margin: 0 auto 21px;
        max-width: inherit;
        display: block;
    }
			.imgBox {
      
        padding: 18px 25px 0;
        width: auto;
        display: block;
        border-radius: 50px 50px 0 0;
		margin-top: 4rem;
		margin: 0;
    }
			.textBox {
        margin-bottom: 20px;
        width: auto;
    }
			.linkList {
        margin: 0 -25px;
        width: auto;
    }
			.linkList li a .txt {
        width: calc(600% - 92px);
    }
			.linkList li a {
        padding: 19px 28px;
        font-size: 1.8rem;
    }
			.textBox p {
    font-size: 2rem;
    line-height: 2;
    letter-spacing: 0.02em;
    font-family: "Shippori Mincho", serif;
}
			.text-rev span{
			margin-bottom: 100px;
			font-size:2.5rem;
			
		}
			.p-index_contact{
				margin-top: 12rem;
			}
			.l-trouble__en {
				display:none;
			}
			.c-btn_reserve a {
        padding: 16px 14px 17px;
    }
			.textList{
				display: block;
			}
			.text-rev{
				margin-top: 5rem;
			}
		    .l-trouble {
        background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/l-trouble-bg-sp.png) no-repeat center top / cover;
        
		
    }
			.l-trouble__inner{
				width: 100%;
			}
			.p-index_contact_inner {
   padding: 1.5rem;
        text-align: left;
}
			.text-rev::after {
    bottom: 525px;			
}
		.linkList li a .txt {
    padding-right: 25px;
    min-width: 182px;
    position: relative;
    box-sizing: border-box;
    background: none;
    font-weight: bold;
}    



.p-index_treatment_top_ttl_jp{
color:#fff;
font-size:3.4rem;
font-family: "Shippori Mincho", serif;
}
.p-index_treatment_top_ttl .-sub {
    display: inline-block;
    padding: 0 20px;
    border: 1px solid #fff;
    height: 34px;
    line-height: 32px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 500;
}
@media(max-width:768px){
.p-index_treatment_top_ttl_jp{
color:#fff;
font-size:2rem;
}
}


		 @media (max-width: 768px) {
    .l-philosophy.pc {
        display: none;
    }
    .l-philosophy.sp {
        display: block;
    }
}

@media (min-width: 769px) {
    .l-philosophy.sp {
        display: none;
    }
    .l-philosophy.pc {
        display: block;
    }
}

		 
.promise-out{
			  width:30%;
		  }
		.p-index_promise{
			background: #edeeea;
		}
		.p-index_info {
    padding-left: 0;
}
		.promise-double {
    display: flex;
    align-items: center;
    justify-content: center;
}
		.p-index_promise_ttl .-en {
    font-family: "Outfit", sans-serif;
    font-size: 130px;
    font-size: 13rem;
    line-height: 1;
    color: #E5E1DC;
    font-weight: 600;
	text-align: center;
	padding-top: 100px;
}
		.-jp{
			text-align: center;
			font-size: 4rem;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
			padding-bottom: 2rem;
		}
		.promise-double{
			background: #fff;
    padding: 2rem 2rem 0 2rem;
		}
		
		@media (max-width: 768px) {
    .p-index_info_inner {
        padding-left:0;
    }
			.docter-p.lazyloaded {
        height: auto;
        width: 90%;
    }
			.p-index_info_inner {
        padding-left: 0;
      
    }
			.p-index_promise_ttl .-en{
				font-size: 6rem;
			}
			.-jp {
   
    font-size: 2.4rem;
}
				.p-index_promise_ttl .-en {
	padding-top: 55px;
			}
	.promise-double {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}	  
		.promise-out {
    width: 75%;
}  
		  }
		  
		   padding-top: 12rem;;
    }
	.l-doctor01-boxes {
    position: relative; /* ← 必須 */
    width: 120rem;
    margin: 8rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    z-index: 2;
	justify-content: center;
	padding-bottom: 100px;
}

		.l-doctor01-boxes__item {
    width: calc((100% - 6rem) / 3);
    background: #fff;
    padding: 3.2rem;
}
	.l-doctor01-boxes h5 {
    color: #dab94d;
    font-family: var(--sub-font);
    font-size: 2rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}
		.l-doctor01-boxes h5::before {
    content: "■";
    color: #dab94d;
    margin-right: 0.8rem;
}
		.l-doctor01-boxes ul li {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.83;
    letter-spacing: 0.05em;
    list-style: disc;
    margin-left: 1.5em;
}
	
		.l-doctor01-boxes {
    position: relative;
    width: 120rem;
    margin: 1rem auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    z-index: 2;
	justify-content:center;
	padding-bottom:100px;
   
}
	
		.c-btn_base.-w380.staff{
			padding-top: 40px;
		}
		
		@media screen and (max-width: 768px) {
    .l-doctor01-boxes {
        /* margin: 2rem auto 0 auto; */
        gap: 1.6rem;
		flex-direction: column;
	        width: calc(100% - 4rem);
    }
			.l-doctor01-boxes {
   
	padding-bottom: 0;
}
			.c-btn_base.-w380.staff{
			padding-top: 20px;
		}
			.l-doctor01-boxes__item {
width:100%;
    background: #fff;
    padding:1.5rem;
}
			
	.c-btn_base.-w380.staff {
        padding-top: 20px;
        padding-bottom: 5rem;
    }
			    .service-card__link {
        background: #fff;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .25);
        width: 90%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
    }
			.l-cont_xl{
				width: 100%;
				padding: 2rem 0;
			}
			.p-index_treatment_top{
				padding: 0 2rem;
			}
}
			
		}
		
		@media(max-width:1300px){
		.linkList li a .txt {
    padding-right: 25px;
    min-width: 182px;
    position: relative;
    box-sizing: border-box;
    background: none;
    font-weight: bold;
}    }

.dr_promise{
			color: #ff92a0;
    display: inline-block;
    font-size: 2.4rem;
    margin-bottom: 1rem;
	font-family: "Shippori Mincho", serif;
			color: #dab94d;
		}
		.p-index_info{
			padding-left: 0;
			
		}
		.p-index_concept{
			background-color: #edeeea;
    padding: 168px 0 120px;
		}
		.p-index_concept_inner{
			    background-color: #fff;
    position: relative;

		}
		.p-index_concept_ttl .-en {
    font-family: "Outfit", sans-serif;s
    font-size: 106px;
    font-size: 10.6rem;
    line-height: 1;
    color: #e5e1dc;
    font-weight: 600;
}
		.p-index_concept_ttl .-jp {
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: 500;
   
    font-family: "Shippori Mincho", serif;
			color: #dab94d;
}
		.p-index_concept_ttl {
    margin-top: -60px;
	padding-left: 100px;
}
		.dr_promise_first{
			font-size: 2.4rem;
			font-family: "Shippori Mincho", serif;
			margin-bottom:2.3rem;
			margin-top: 2.3rem;
		}
		.p-index_concept_inner:before {
    content: "";
    background-color: #fff;
    position: absolute;
    width: 50vw;
    height: 100%;
    left: 100%;
    top: 0;
}
		.big{
			font-size: 3.5rem;
			color: #dab94d;
		}
		
		
		@media(max-width:768px){
			.p-index_concept_ttl .-en {
    font-family: "Outfit", sans-serif;
    font-size: 6rem;
    line-height: 1;
    color: #e5e1dc;
    font-weight: 600;
}
			.p-index_concept_ttl {
   
    padding-left: 20px;
		margin-top: -40px;
}
			.p-index_concept_ttl .-jp {
    font-size: 28px;
    font-size: 2rem;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    color: #dab94d;
}
			.p-index_info {
    padding-left: 0;
}
			.p-index_concept {
    background-color: #edeeea;
    padding: 120px 0 95px;
}
			.p-index_info_inner{
				padding-left: 20px;
			}
			.dr_promise_first {
    font-size: 2rem;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 2.3rem;
    margin-top: 2.3rem;
}
			.big {
    font-size: 2.2rem;
    color: #dab94d;
}
		
		}
		
		
		
		
		
		.service-card__link::after{
	    content: "";
    display: inline-block;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../img/arrow-right-bottom.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}


	.service-card{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}
@media(max-width:768px){
.service-card{
   padding:0 2rem;
}

}
	.service-card__item {
    width: calc((100% - 4.8rem) / 2);
	display:flex;
	justify-content:center;
	
}
	.service-card__link{
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: 90%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
	
}
	.service-card__title {
    font-family: var(--sub-font);
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
	.service-card__text {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.83;
    letter-spacing: 0.05em;
}
	.service-card__content{
    width: calc(100% - 20rem);
    padding: 0 3.4rem;
}
	.service-card__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
}
	.service-card__img {
    width:20rem;
    
}
	.p-cardL {
    display: flex;
    align-items:center;
    flex-wrap: wrap;
    
    margin-top: 10rem;
}
	.p-cardL__item {
    width: calc((100% - 4.8rem) / 2);
	display:flex;
		justify-content:center;
		margin-bottom:5rem;
}
	.p-cardL__link {
    position: relative;
    width: 90%;
    border-radius: 2.4rem;
    background: var(--white);
    display: block;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}
	.p-cardL__link::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid transparent;
    border-radius: 2.4rem;
    transition: border-color 0.3s;
    pointer-events: none;
}
	.p-cardL__txtbox {
    padding: 4rem 5rem;
}
	.p-cardL__imgbox img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 2.4rem 2.4rem 0 0;
}
	.p-cardL__subtitle {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 2rem;
}
	.p-cardL__subtitle .pickup {
    width: 7.5rem;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #8E7F64 10%, #998B71 30%, #BBAE98 40%, #D9D0BF 50%, #BBAE98 60%, #998B71 70%, #8E7F64 90%);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: var(--en-font);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
	.p-cardL__subtitle h3 {
    width: calc(100% - 9.1rem);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    color: var(--main-dark);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.87;
    letter-spacing: 0.05em;
}
	.p-cardL__subtitle h3 span {
    color: var(--base-color);
    font-family: var(--sub-font);
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
	.p-cardL__list {
    margin-top: 2.4rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
	.p-cardL__list li {
    width: calc((100% - 1.6rem) / 2);
    background: var(--main-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.8rem 0;
    color: var(--main-dark);
    font-weight: 600;
    line-height: 1.4;
}
	
	@media(max-width:768px){

		.p-cardL__item {
        width: 100%;
		
    }
	.p-cardL__link {
    position: relative;
    width: 100%;
    border-radius: 2.4rem;
    background: var(--white);
    display: block;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .25);
}
		.p-cardL__subtitle .pickup {
        width: 6.6rem;
        font-size: 1.5rem;
        line-height: 1;
        letter-spacing: 0.12em;
    }
		.p-cardL__subtitle h3 {
        width: calc(100% - 8.2rem);
        font-size: 1.2rem;
    }
		.p-cardL__subtitle h3 span {
        font-size: 1.8rem;
        font-weight: 400;
        letter-spacing: 0.08em;
    }
		.p-cardL__list li {
        width: calc((100% - 1rem) / 2);
        font-size: 1.4rem;
        line-height: 1.2;
    }
.p-cardL__txtbox {
    padding: 4rem 2rem;
	}
		.service-card__item {
    width:100%;
	margin-bottom:3rem;
	
}
		.service-card__img img {
   height: 20rem;
}
		    .service-card__content {
        width: calc(100% - 10rem);
        padding: 0 2rem;
    }
		.service-card__img {
    width:10rem;
    
}
.service-card__link{
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
	
}
		}
		
		.p-index_price {
  background-color: #9d9387;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-index_price {
    padding-bottom: 60px;
  }
}
.p-index_price_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 180px;
  background-image: url(../img/index/price_bg.webp);
  background-position: right;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner {
    height: 95px;
    background-image: url(../img/index/price_bg_sp.webp);
  }
}
.p-index_price_inner::after {
  content: "PRICE LIST";
  line-height: 1;
  position: absolute;
  font-size: 94px;
  font-size: 9.4rem;
  color: #e8e8e7;
  font-weight: bold;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner::after {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
.p-index_price_inner_img {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner_img {
    display: block;
    position: absolute;
    width: 14px;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
  }
}
.p-index_price_inner_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
}
.p-index_price_inner_txt p {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  margin-right: 20px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner_txt p {
    font-size: 15px;
    font-size: 1.5rem;
    margin-right: 0;
  }
}
.p-index_price_inner_txt img {
  width: 25px;
  display: none;
}

.p-index_blog {
  background-color: #edeeea;
  padding: 168px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-index_blog {
    padding: 55px 0;
  }
}
.p-index_blog_inner {
  background-color: #fff;
  position: relative;
}
.p-index_blog_inner::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 50vw;
  height: 100%;
  z-index: 1;
  left: 100%;
  top: 0;
}
.p-index_blog_ttl {
  margin-top: -60px;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl {
    margin-top: -14px;
  }
}
.p-index_blog_ttl .-en {
  font-family: "Outfit", sans-serif;
  font-size: 106px;
  font-size: 10.6rem;
  line-height: 1;
  color: #e5e1dc;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl .-en {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.p-index_blog_ttl .-jp {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #222;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl .-jp {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.p-index_blog .p-index_info_head {
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_head {
    padding-left: 20px;
  }
}
.p-index_blog .p-index_info_cont {
  padding: 54px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont {
    padding: 10px 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner {
    padding-left: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner {
    overflow-y: scroll;
    height: 312px;
    padding-left: 20px;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 50px;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article .c-ttl_article a {
  color: #5f5f5f;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article a:first-of-type {
  aspect-ratio: 1;
  overflow: hidden;
  width: 80px;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article a:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


 <!-- top bg -->
			<style>
		.info-block1 {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
	margin-bottom: 10rem;
}
.p-information-btns{
	display:flex;
	justify-content:  center;
	gap:2rem;
			}
.p-information__time{
 margin-bottom: 2rem;				
			}
.call-cta{
	text-align: center;
  margin-bottom: 2rem;
				}
.call-cta a{
border: 1px solid;
padding: 2rem 5rem;
border-radius: 50px;
			}
				
.reserve-cta{
	text-align: center;
				}
.p-information__phone{
	margin-bottom: 3rem;
    justify-content: center;
	display: flex;
				}
			
.p-information__phone a{
	background: #000;
	padding: 2rem 9rem;
	border-radius: 50px;
			}
.p-information__cta h3{
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;
			}
.p-information__reserve{
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;			
			}
.p-information__reserve a{
	background: #DAB94D;
	padding: 2rem 10rem;
	border-radius: 50px;
			}
.reserve-cta a{
border: 1px solid;
padding: 2rem 5rem;
border-radius: 50px;
				}
.info-block1-01,
.info-block1-02 {
    width: 50% !important;
}
.p-information__cta h3{
font-size: 2rem;					
				}
.p-information__met{
   font-size: 18px;				
			}
			/* 親を横並びに */

/* 子ブロックの幅（例） */
.info-block1-01 {
    width: 50%;
}

.info-block1-02 {
    width: 50%;
}
.p-information__meta{
margin:1rem 0;					
				}
.p-information-btns__gmap a{
	border-radius: 1.2rem;
    border: 1px solid var(--gray);
    background: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.1rem 1.7rem;
	color: #000;
			}
.p-information-btns__access a {
    border-radius: 1.2rem;
    border: 1px solid #9d9387;
    background: #9d9387;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.1rem 1.7rem;
}
.p-information__access{
margin-bottom: 3rem;
			}

/* スマホは縦並びに戻す */
@media screen and (max-width: 768px) {
 .info-block1 {
    display: flex !important;
	flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
	margin-bottom: 6rem;
}
	.info-block1-01,
.info-block1-02 {
    width:100% !important;
}
	.p-information-btns{
	display:flex;
	flex-direction: column;
	align-items: center;
			}
.p-information-btns__access a {
   
    padding: 1.5rem 5rem;
}
.p-information-btns__gmap a{
    padding: 1.5rem 5rem;
			}
	.l-trouble__title {
        width: 100%;
        height: 14rem;
        font-size: 2rem;
        font-weight: 500;
        top: -7.6rem;
        margin: 0 auto -7.6rem auto;
    }
}


.info-block1 {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
	margin-bottom: 10rem;
}
.p-information-btns{
	display:flex;
	justify-content:  center;
	gap:2rem;
			}
.p-information__time{
 margin-bottom: 2rem;				
			}
.call-cta{
	text-align: center;
  margin-bottom: 2rem;
				}
.call-cta a{
border: 1px solid;
padding: 2rem 5rem;
border-radius: 50px;
			}
				
.reserve-cta{
	text-align: center;
				}
.p-information__phone{
	margin-bottom: 3rem;
    justify-content: center;
	display: flex;
				}
			
.p-information__phone a{
	background: #000;
	padding: 2rem 9rem;
	border-radius: 50px;
			}
.p-information__cta h3{
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;
			}
.p-information__reserve{
	margin-bottom: 3rem;
	display: flex;
	justify-content: center;			
			}
.p-information__reserve a{
	background: #DAB94D;
	padding: 2rem 10rem;
	border-radius: 50px;
			}
.reserve-cta a{
border: 1px solid;
padding: 2rem 5rem;
border-radius: 50px;
				}
.info-block1-01,
.info-block1-02 {
    width: 50% !important;
}
.p-information__cta h3{
font-size: 2rem;					
				}
.p-information__met{
   font-size: 18px;				
			}
			/* 親を横並びに */

/* 子ブロックの幅（例） */
.info-block1-01 {
    width: 50%;
}

.info-block1-02 {
    width: 50%;
}
.p-information__meta{
margin:1rem 0;					
				}
.p-information-btns__gmap a{
	border-radius: 1.2rem;
    border: 1px solid var(--gray);
    background: var(--white);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.1rem 1.7rem;
	color: #000;
			}
.p-information-btns__access a {
    border-radius: 1.2rem;
    border: 1px solid #9d9387;
    background: #9d9387;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.1rem 1.7rem;
}
.p-information__access{
margin-bottom: 3rem;
			}

/* スマホは縦並びに戻す */
@media screen and (max-width: 768px) {
 .info-block1 {
    display: flex !important;
	flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
	margin-bottom: 6rem;
}
	.info-block1-01,
.info-block1-02 {
    width:100% !important;
}
	.p-information-btns{
	display:flex;
	flex-direction: column;
	align-items: center;
			}
.p-information-btns__access a {
   
    padding: 1.5rem 5rem;
}
.p-information-btns__gmap a{
    padding: 1.5rem 5rem;
			}
	.l-trouble__title {
        width: 100%;
        height: 14rem;
        font-size: 2rem;
        font-weight: 500;
        top: -7.6rem;
        margin: 0 auto -7.6rem auto;
    }
}

.en {
        font-family: "Outfit", sans-serif;
        font-size: 140px;
        font-size: 4rem;
        line-height: 1;
        color: #9d9387;
        font-weight: 600;
        text-align: center;
		margin-top:7rem;
    }

.ja.pc{
text-align: center;
    font-size: 3rem;
}

.p-information__intro{
text-align: center;
    margin-bottom: 4rem;
}

.sns{
margin-top:17rem;
margin-bottom:14rem;
}
@media(max-width:768px){
.sns{
margin-top:0;
padding:5rem 0;
margin-bottom:0;
}
.promice-double {
   
    flex-direction: column;
}
}

.promice-double{
display:flex;
}

.docter-p.lazyloaded{
height:42rem;
}


@media screen and (max-width: 768px) {
  .num01,
  .num02,
  .num03,
  .num04,
  .num05,
  .num06,
  {
    margin-bottom: 1.2rem;
  }
}
.num01::before {
  content: "1";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 43%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
.num02::before {
  content: "2";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
.num03::before {
  content: "3";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 57%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
.num04::before {
  content: "4";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 63%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
.num05::before {
  content: "5";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 70%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
.num06::before {
  content: "6";
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: #dab94d;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  font-size: 1.3rem;
}
@media(min-width:768px){
.ja.sp{
display:none;
}
}




/* Index
---------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .home .l-header {
    background-color: transparent;
  }
  .home .l-header_seo_txt {
    color: #9d9387;
  }
}
.home .l-header_logo_wht {
  display: block;
}
@media screen and (max-width: 767px) {
  .home .l-header_logo_wht {
    display: none;
  }
}
.home .l-header_logo_color {
  display: none;
}
@media screen and (max-width: 767px) {
  .home .l-header_logo_color {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .home .l-header_tel_link_wht {
    display: block;
  }
  .home .l-header_tel_link_brw {
    display: none;
  }
  .home .l-header_tel_link_num, .home .l-header_tel_txt {
    color: white;
  }
}
@media screen and (min-width: 768px) {
  .home .l-header.open .l-header_logo_wht {
    display: none;
  }
  .home .l-header.open .l-header_logo_color {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .home .l-header.scroll-in {
    background-color: #fff;
  }
  .home .l-header.scroll-in .l-header_seo_txt {
    color: #87746f;
  }
  .home .l-header.scroll-in .l-header_logo_wht {
    display: none;
  }
  .home .l-header.scroll-in .l-header_logo_color {
    display: block;
  }
  .home .l-header.scroll-in .l-header_tel_link_wht {
    display: none;
  }
  .home .l-header.scroll-in .l-header_tel_link_brw {
    display: block;
  }
  .home .l-header.scroll-in .l-header_tel_link_num, .home .l-header.scroll-in .l-header_tel_txt {
    color: #5b382f;
  }
}
.home .l-main {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .home .l-main {
    margin-top: 0;
  }
}


.p-index_bg_top {
  padding: 30px 0 0;
  position: relative;
}
.p-index_bg_top::after {
  content: "";
  background-color: #edeeea;
  position: absolute;
  width: 100%;
  height: 82.62%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-index_bg_top {
    padding: 24px 0 0;
    background-color: #edeeea;
  }
}
.p-index_bg_btm {
  padding: 0 0 160px;
}
@media screen and (max-width: 767px) {
  .p-index_bg_btm {
    padding: 38px 0 60px;
  }
}
.p-index_news {
  position: relative;
}
.p-index_news::after {
  content: "";
  display: block;
  background-color: #414141;
  position: absolute;
  width: 50vw;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}
.p-index_news_ttl {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  line-height: 1.4;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index_news_ttl {
    font-size: 3.68vw;
    margin-bottom: 12px;
  }
}
.p-index_news_ttl_en {
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  font-size: 3.6rem;
  line-height: 1;
  color: #5f5f5f;
  font-weight: 600;
  margin-bottom: 2px;
}
.p-index_news_inner {
  background-color: #414141;
  padding: 60px 0 50px;
  padding-left: 9.72vw;
  padding-right: 3.47vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index_news_inner {
    padding: 21px 20px 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_news_inner::before {
    content: "";
    display: inline-block;
    background-image: url(../img/index/ttl_news.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: 3.47vw;
  }
}
.p-index_news .p-index_info_cont {
  overflow-X: auto;
}
@media screen and (max-width: 767px) {
  .p-index_news .p-index_info_inner {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-index_news .p-index_info_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-bottom: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_news .p-index_info_list article {
    width: 484px;
  }
  .p-index_news .p-index_info_list article:not(:last-child) {
    margin-right: 40px;
  }
}
.p-index_info_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-index_info_head {
    padding-right: 0;
  }
}
.p-index_info_head .c-ttl_index {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-index_info_head_btn {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-index_info_head_btn {
    display: inline-block;
  }
}
.p-index_info_head_btn a {
  display: inline-block;
  position: relative;
  z-index: 0;
  line-height: 1;
  padding: 5px 33px 5px 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-index_info_head_btn a {
    padding: 5px 23px 5px 0;
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.p-index_info_head_btn a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 1;
  right: 0;
  width: 25px;
  height: 25px;
  background: url(../img/ico_arw_g.webp) left top/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .p-index_info_head_btn a::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_info_head_btn a span {
    display: none;
  }
}
.p-index_info_list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-index_info_list article {
    position: relative;
    z-index: 0;
    padding: 12px 0;
  }
}
.p-index_info_list article:last-of-type {
  border-bottom: none;
}
.p-index_info_list article a:first-of-type {
  width: 160px;
  aspect-ratio: 160/107;
  overflow: hidden;
  margin-right: 24px;
  background-image: url(../img/noimage.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-index_info_list article a:first-of-type {
    width: 115px;
    margin-top: 0;
    margin-right: 15px;
  }
}
.p-index_info_list article a:first-of-type img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-index_info_list .p-blog_cont {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 0;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_cont {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.p-index_info_list .p-blog_cont .c-ttl_article {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_cont .c-ttl_article {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
}
.p-index_info_list .p-blog_cont .c-ttl_article a {
  background: none;
  font-family: "Noto Sans JP", sans-serif;
  margin-right: 0;
  color: #fff;
}
.p-index_info_list .p-blog_cont_sub {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_cont p {
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 50px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    width: 100%;
    max-height: 50px;
    overflow: hidden;
  }
}
.p-index_info_list .p-blog_date {
  color: #d4a91c;
  font-family: "Shippori Mincho", serif;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_date {
    margin-bottom: 5px;
  }
}
.p-index_info_list .p-blog_cate {
  background-image: unset !important;
  aspect-ratio: unset !important;
  overflow: visible !important;
  width: auto !important;
  display: inline-block !important;
  margin: 0 10px 4px 0 !important;
  padding: 1px 8px 2px;
  line-height: 1.2;
  border: 1px solid #9d9387;
  background-color: #9d9387;
  color: #fff !important;
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_cate {
    line-height: 1.2;
    margin: 0 4px 2px 0 !important;
    font-size: 10px;
    font-size: 1rem;
  }
}
.p-index_info_list .p-blog_cate_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-index_info_list .p-blog_cate_wrap {
    margin-top: 4px;
  }
}
.p-index_info_list .p-blog_cate:last-child {
  margin-right: 0 !important;
}
.p-index_info_list .p-blog_thumb {
  height: 100%;
  display: block;
}
.p-index_info_list .p-blog_thumb picture {
  height: 100%;
}
.p-index_contact {
  margin-top: 75px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index_contact {
    margin-top: 12rem;
  }
}
.p-index_contact .l-cont_m {
  padding: 53px 20px 45px;
}
@media screen and (max-width: 767px) {
  .p-index_contact .l-cont_m {
    padding: 0 0 55px;
  }
}
.p-index_contact_inner {
  background-image: url(../img/index/bg_reserve.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 64px 60px 95px;
}
@media screen and (max-width: 767px) {
  .p-index_contact_inner {
    padding: 37px 20px;
    background-image: url(../img/index/bg_reserve_sp.webp);
  }
}
.p-index_contact_ttl {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index_contact_ttl {
    margin-bottom: 25px;
  }
}
.p-index_contact_ttl_sub {
  display: block;
}
.p-index_contact_ttl_sub_cont {
  display: inline-block;
  line-height: 1;
  padding: 5px 10px;
  border: 1px solid #5f5f5f;
  letter-spacing: normal;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-index_contact_ttl_sub_cont {
    padding: 3px 5px 4px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-index_contact_ttl_main {
  display: inline-block;
  line-height: 1.4;
  margin-top: 20px;
  color: #222;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 28px;
  font-size: 2.8rem;
  position: relative;
  padding-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .p-index_contact_ttl_main {
    line-height: 1.81;
    margin-top: 8px;
    font-size: 17px;
    font-size: 1.7rem;
    padding-bottom: 10px;
  }
}
.p-index_contact_ttl_main::before, .p-index_contact_ttl_main::after {
  content: "";
  display: inline-block;
  background-color: #9d9387;
  position: absolute;
  width: 40px;
  height: 1px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-index_contact_ttl_main::before, .p-index_contact_ttl_main::after {
    width: 24px;
  }
}
.p-index_contact_ttl_main::before {
  left: 50%;
}
.p-index_contact_ttl_main::after {
  background-color: #dab94d;
  right: 50%;
}
.p-index_contact .c-btn_reserve {
  margin: 28px auto 0;
}
@media screen and (max-width: 767px) {
  .p-index_contact .c-btn_reserve {
    width: 100%;
    margin: 25px auto 0;
  }
}
.p-index_feature {
  padding: 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-index_feature {
    padding: 50px 0 0;
  }
}
.p-index_feature_ttl .-en {
  font-family: "Outfit", sans-serif;
  font-size: 140px;
  font-size: 14rem;
  line-height: 1;
  color: #edeeea;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-index_feature_ttl .-en {
    font-size: 60px;
    font-size: 6rem;
  }
}
.p-index_feature_ttl .-sub {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index_feature_ttl .-sub {
    font-size: 13px;
    font-size: 1.3rem;
    margin-top: 5px;
  }
}
.p-index_feature_ttl .-main {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {

  .p-index_feature_ttl .-main {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 6px;
  }
}

.p-index_feature_top{
		  padding-top: 16rem;
		  
	  }
@media(max-width:768px){
.p-index_feature_top{
		  padding-top: 55px;
		  
	  }
}
.p-index_feature_top_list li {
  position: relative;
  z-index: 0;
  padding: 40px 0 60px;
}
@media screen and (min-width: 768px) {

  .p-index_feature_top_list li:nth-child(odd) {
    padding-left: 6.25vw;
  }
  .p-index_feature_top_list li:nth-child(odd) a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-index_feature_top_list li:nth-child(odd) .p-index_feature_top_list_btn {
    top: 371px;
    right: 140px;
  }
  .p-index_feature_top_list li:nth-child(even) {
    padding-right: 6.25vw;
  }
  .p-index_feature_top_list li:nth-child(even) .p-index_feature_top_list_img .-num {
    right: unset;
    left: 54px;
  }
  .p-index_feature_top_list li:nth-child(even) .p-index_feature_top_list_btn {
    top: 400px;
    left: 140px;
  }
  .p-index_feature_top {
     padding-top: 16rem;
   
}
}
@media screen and (min-width: 1441px) {
  .p-index_feature_top_list li:nth-child(odd) {
    padding-left: 90px;
  }
  .p-index_feature_top_list li:nth-child(even) {
    padding-right: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li {
    padding: 26px 0 28px;
  }
  .p-index_feature_top_list li:nth-child(even) .p-index_feature_top_list_img .-num {
    right: unset;
    left: 20px;
  }
}
.p-index_feature_top_list li:nth-child(1)::before {
  content: "";
  display: inline-block;
  background-color: #f3f3f3;
  position: absolute;
  width: 48.23%;
  height: 80.76%;
  bottom: 0;
  right: -5.55vw;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li:nth-child(1)::before {
    bottom: unset;
    right: -20px;
    top: 65px;
    width: 76.2vw;
    height: 210px;
  }
}
.p-index_feature_top_list li:nth-child(3)::before {
  content: "";
  display: inline-block;
  background-color: #f3f3f3;
  position: absolute;
  width: 36.3%;
  height: 94%;
  top: 0;
  left: -11.8vw;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li:nth-child(3)::before {
    left: -20px;
    top: unset;
    bottom: -10px;
    width: 52vw;
    height: 64.34%;
  }
}
.p-index_feature_top_list li:nth-child(5)::before {
  content: "";
  display: inline-block;
  background-color: #f3f3f3;
  position: absolute;
  width: 48.23%;
  height: 81.4%;
  top: -60px;
  right: -5.55vw;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li:nth-child(5)::before {
    bottom: unset;
    right: -20px;
    top: -14px;
    width: 76.2vw;
    height: 210px;
  }
}
.p-index_feature_top_list li::before {
  position: absolute;
  z-index: -1;
}
.p-index_feature_top_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 0;
  color: #222;
}
.p-index_feature_top_list li a .c-txt_base {
  color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li a {
    display: block;
  }
}
.p-index_feature_top_list li a .c-btn_base {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list li a .c-btn_base {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_feature_top_list_img {
    width: 52.1%;
  }
}
.p-index_feature_top_list_img .-num {
  color: #dab94d;
  font-size: 140px;
  font-size: 14rem;
  line-height: 1;
  position: absolute;
  font-family: "Bodoni Moda", serif;
  font-style: italic;
  font-weight: 700;
  top: -74px;
  right: 54px;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_img .-num {
    top: -25px;
    font-size: 60px;
    font-size: 6rem;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_feature_top_list_cont {
    padding-top: 45px;
    width: 42%;
  }
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_cont {
    padding: 30px 20px 0;
  }
}
.p-index_feature_top_list_ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_ttl {
    margin-bottom: 17px;
  }
}
.p-index_feature_top_list_ttl .-jp {
  line-height: 1.5;
  font-size: 34px;
  font-size: 3.4rem;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .p-index_feature_top_list_ttl .-jp {
    font-size: 30px;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_ttl .-jp {
    font-size: 20px;
    font-size: 2rem;
  }
}
.p-index_feature_top_list_ttl .-sub {
  margin-top: 10px;
  color: #9d9387;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_ttl .-sub {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.p-index_feature_top_list_btn {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-index_feature_top_list_btn .c-btn_ripples::before {
    top: -16px;
    left: -16px;
    width: 112px;
    height: 112px;
  }
  .p-index_feature_top_list_btn .c-btn_ripples::after {
    top: -32px;
    left: -32px;
    width: 144px;
    height: 144px;
  }
  .p-index_feature_top_list_btn .c-btn_ripples_cont {
    width: 80px;
    height: 80px;
  }
  .p-index_feature_top_list_btn .c-btn_ripples_cont img {
    width: 28px;
    height: 6px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_feature_top_list_btn {
    top: 193px;
    right: 20px;
  }
}
.p-index_greeting {
  margin: 60px 0 0;
  position: relative;
  background: #414141;
}
.p-index_greeting::before {
  content: "";
  display: inline-block;
  z-index: 1;
  background-color: #414141;
  position: absolute;
  width: 50vw;
  height: 85.7%;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-index_greeting::before {
    height: 93.7%;
  }
}
.p-index_greeting::after {
  content: "";
  display: inline-block;
  z-index: -1;
  background-color: #9d9387;
  position: absolute;
  width: 100%;
  height: 140px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-index_greeting::after {
    height: 84px;
  }
}
.p-index_greeting_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-left: 40px;
  padding-bottom: 85px;
  position: relative;
}
.p-index_greeting_inner::before {
  content: "";
  display: inline-block;
  z-index: 1;
  background-color: #414141;
  position: absolute;
  width: 100%;
  height: 85.7%;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-index_greeting_inner::before {
    height: 93.7%;
  }
}
@media screen and (max-width: 767px) {
  .p-index_greeting_inner {
    padding: 0 0px 50px;
  }
  .p-index_greeting {
    margin:0;
    position: relative;
}
}
.p-index_greeting_cont {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-index_greeting_cont {
    width: 55.2%;
  }
}
.p-index_greeting_img {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-index_greeting_img {
    width: 32%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-index_greeting_img {
    width: 51vw;
    margin: 0 auto 26px;
  }
}
.p-index_greeting_ttl {
  margin-bottom: 30px;
  font-weight: 500;
  padding-top:55px;
}
@media screen and (max-width: 767px) {
  .p-index_greeting_ttl {
    margin-bottom: 22px;
	padding-top: 55px;
  }
}
.p-index_greeting_ttl .-logo {
  width: 396px;
}
@media screen and (max-width: 767px) {
  .p-index_greeting_ttl .-logo {
    width: 225px;
  }
}
.p-index_greeting_ttl_jp {
  line-height: 1;
  margin-top: 19px;
  margin-bottom: 48px;
  color: #dab94d;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-index_greeting_ttl_jp {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.p-index_greeting .c-txt_base {
  margin-bottom: 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-index_greeting .c-txt_base {
    margin-bottom: 25px;
  }
}
.p-index_greeting_name {
  color: #fff;
}
.p-index_greeting_name dt,
.p-index_greeting_name dd {
  line-height: 1;
}
.p-index_greeting_name dt {
  font-weight: 500;
}
.p-index_greeting_name dd {
  margin-top: 10px;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-index_greeting_name dd {
    margin-top: 10px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}
.p-index_treatment {
  padding: 100px 0 0;
  background-color: #9d9387;
}
@media screen and (max-width: 767px) {
  .p-index_treatment {
    padding: 55px 0 0;
  }
}
.p-index_treatment .l-cont_xl {
  position: relative;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .p-index_treatment .l-cont_xl {
    padding-bottom: 22px;
  }
}

.p-index_treatment_ttl {
  text-align: right;
  margin-bottom: 30px;
  padding-right: 3.47vw;
  position: relative;
  z-index: 10;
}
.p-index_treatment_ttl .-en {
  font-family: "Outfit", sans-serif;
  font-size: 140px;
  font-size: 13rem;
  line-height: 1;
  color: #d8d1c8;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_ttl .-en {
    font-size: 13vw;
  }
  .p-index_treatment_ttl {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 0;
  
}
}
.p-index_treatment_ttl .-jp {
  margin-top: 12px;
  line-height: 1.4;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_ttl .-jp {
    margin-top: 0;
    font-size: 21px;
    font-size: 2.1rem;
  }
}
.p-index_treatment_top {
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}
.p-index_treatment_top li {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-index_treatment_top li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-index_treatment_top li a .p-index_treatment_top_ttl,
  .p-index_treatment_top li a .p-index_treatment_top_txt {
    padding-left: 6.25vw;
  }
  .p-index_treatment_top li:nth-child(even) a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-index_treatment_top li:nth-child(even) a .p-index_treatment_top_ttl,
  .p-index_treatment_top li:nth-child(even) a .p-index_treatment_top_txt {
    padding-left: 0;
    padding-right: 6.25vw;
  }
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top li {
    margin-top: 25px;
  }
}
.p-index_treatment_top li:first-child {
  margin-top: 0;
}
.p-index_treatment_top_img {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-index_treatment_top_img {
    width: 52%;
  }
}
@media screen and (min-width: 768px) {
  .p-index_treatment_top_cont {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_cont {
    background-size: 227px;
    padding: 30px 20px 25px;
  }
}
.p-index_treatment_top_cont .c-txt_base {
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_cont .c-txt_base {
    padding: 0;
  }
}
.p-index_treatment_top_cont .c-btn_base {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_cont .c-btn_base {
    margin-top: 18px;
  }
}
.p-index_treatment_top_txt {
  color: #fff;
}
.p-index_treatment_top_ttl {
  position: relative;
  z-index: 0;
  margin-bottom: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_ttl {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
}

@media screen and (max-width: 767px) {
  
.p-index_treatment_top_ttl::before {
  bottom: 3px;
}
.p-index_treatment_top_ttl::after {
  bottom: 0;
}
.p-index_treatment_top_ttl_jp {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_ttl_jp {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.2;
  }
}
.p-index_treatment_top_ttl .-sub {
  display: inline-block;
  padding: 0 20px;
  border: 1px solid #fff;
  height: 34px;
  line-height: 32px;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-index_treatment_top_ttl .-sub {
    font-size: 14px;
    font-size: 1.4rem;
    height: 26px;
    line-height: 24px;
    padding: 0 14px;
    margin-bottom: 10px;
  }
}
.p-index_price {
  background-color: #9d9387;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-index_price {
    padding-bottom: 60px;
  }
}
.p-index_price_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 180px;
  background-image: url(../img/index/price_bg.webp);
  background-position: right;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner {
    height: 95px;
    background-image: url(../img/index/price_bg_sp.webp);
  }
}
.p-index_price_inner::after {
  content: "PRICE LIST";
  line-height: 1;
  position: absolute;
  font-size: 94px;
  font-size: 9.4rem;
  color: #e8e8e7;
  font-weight: bold;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner::after {
    font-size: 45px;
    font-size: 4.5rem;
  }
}
.p-index_price_inner_img {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner_img {
    display: block;
    position: absolute;
    width: 14px;
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
  }
}
.p-index_price_inner_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
}
.p-index_price_inner_txt p {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  margin-right: 20px;
  color: #222;
}
@media screen and (max-width: 767px) {
  .p-index_price_inner_txt p {
    font-size: 15px;
    font-size: 1.5rem;
    margin-right: 0;
  }
}
.p-index_price_inner_txt img {
  width: 25px;
  display: none;
}
.p-index_calendar {
  padding: 92px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-index_calendar {
    padding: 45px 0 50px;
  }
}
.p-index_calendar_txt {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_txt {
    margin-bottom: 35px;
  }
}
.p-index_calendar_cont .calendarBox {
  font-family: "Shippori Mincho", serif;
}
@media screen and (min-width: 768px) {
  .p-index_calendar_cont .calendarBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .p-index_calendar_cont .calendarBox .calendar {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar:first-child {
    margin-bottom: 30px;
  }
}
.p-index_calendar_cont .calendarBox .calendar .month {
  display: block;
  line-height: 1;
  margin-bottom: 20px;
  color: #5b382f;
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar .month {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}
.p-index_calendar_cont .calendarBox .calendar table {
  width: 100%;
}
.p-index_calendar_cont .calendarBox .calendar table tr:last-child td {
  border-bottom: 1px solid #d0c4c1;
}
.p-index_calendar_cont .calendarBox .calendar table th,
.p-index_calendar_cont .calendarBox .calendar table td {
  line-height: 1;
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar table th,
  .p-index_calendar_cont .calendarBox .calendar table td {
    font-size: 10px;
    font-size: 1rem;
  }
}
.p-index_calendar_cont .calendarBox .calendar table th.holiday,
.p-index_calendar_cont .calendarBox .calendar table td.holiday {
  color: #df461e;
}
.p-index_calendar_cont .calendarBox .calendar table th.saturday,
.p-index_calendar_cont .calendarBox .calendar table td.saturday {
  color: #447d98;
}
.p-index_calendar_cont .calendarBox .calendar table th {
  line-height: 1;
  padding: 13px 0;
  border-bottom: 3px double #d0c4c1;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar table th {
    padding: 7px 0;
  }
}
.p-index_calendar_cont .calendarBox .calendar table td {
  position: relative;
  z-index: 0;
  height: 56px;
  padding-top: 19px;
  border-bottom: 1px dotted #d0c4c1;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar table td {
    height: 36px;
    padding-top: 12px;
  }
}
.p-index_calendar_cont .calendarBox .calendar table td::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-index_calendar_cont .calendarBox .calendar table td::before {
    width: 25px;
    height: 25px;
  }
}
.p-index_calendar_cont .calendarBox .calendar table td.close::before {
  background-color: #feece6;
}
.p-index_calendar_cont .calendarBox .calendar table td.am_close::before {
  background-color: #dff3dc;
}
.p-index_calendar_cont .calendarBox .calendar table td.pm_close::before {
  background-color: #d6e8f0;
}
.p-index_calendar_cont .calendarBox .calendar table td.other::before {
  background-color: #e9e3e2;
}
.p-index_calendar_btm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_btm {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}
.p-index_calendar_btm li {
  position: relative;
  z-index: 0;
  line-height: 1px;
  margin-right: 15px;
  padding-left: 16px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-index_calendar_btm li {
    margin-right: 12px;
    padding-left: 12px;
    font-size: 10px;
    font-size: 1rem;
  }
}
.p-index_calendar_btm li:nth-child(1)::before {
  background-color: #feece6;
}
.p-index_calendar_btm li:nth-child(2)::before {
  background-color: #dff3dc;
}
.p-index_calendar_btm li:nth-child(3)::before {
  background-color: #d6e8f0;
}
.p-index_calendar_btm li:nth-child(4) {
  margin-right: 0;
}
.p-index_calendar_btm li:nth-child(4)::before {
  background-color: #e9e3e2;
}
.p-index_calendar_btm li::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
@media screen and (max-width: 767px) {
  .p-index_calendar_btm li::before {
    width: 12px;
    height: 12px;
  }
}
.p-index_blog {
  background-color: #edeeea;
  padding: 168px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-index_blog {
    padding: 55px 0;
  }
}
.p-index_blog_inner {
  background-color: #fff;
  position: relative;
}
.p-index_blog_inner::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 50vw;
  height: 100%;
  z-index: 1;
  left: 100%;
  top: 0;
}
.p-index_blog_ttl {
  margin-top: -60px;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl {
    margin-top: -14px;
  }
}
.p-index_blog_ttl .-en {
  font-family: "Outfit", sans-serif;
  font-size: 106px;
  font-size: 10.6rem;
  line-height: 1;
  color: #e5e1dc;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl .-en {
    font-size: 36px;
    font-size: 3.6rem;
  }
}
.p-index_blog_ttl .-jp {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #222;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 767px) {
  .p-index_blog_ttl .-jp {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.p-index_blog .p-index_info_head {
  padding-left: 90px;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_head {
    padding-left: 20px;
  }
}
.p-index_blog .p-index_info_cont {
  padding: 54px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont {
    padding: 10px 0 30px;
  }
}
@media screen and (min-width: 768px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner {
    padding-left: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner {
    overflow-y: scroll;
    height: 312px;
    padding-left: 20px;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 50px;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6px;
  }
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article .c-ttl_article a {
  color: #5f5f5f;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article a:first-of-type {
  aspect-ratio: 1;
  overflow: hidden;
  width: 80px;
}
.p-index_blog .p-index_info_cont .p-index_info_inner .p-index_info_list article a:first-of-type img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----- l-case ----- */

.l-case {
  padding: 6.4rem 0;
}
.en{
font-family: "Outfit", sans-serif;
    font-size: 140px;
    font-size: 4rem;
    line-height: 1;
    color:#9d9387;
    font-weight: 600;
	text-align:center;
}
.ja{
font-size:3rem;
text-align:center;
}
.p-information__intro{
text-align:center;
margin-bottom:4rem;
}
.ja.sp{
font-size: 2.3rem;
margin-top: 2rem;
display:none;
}

@media screen and (max-width: 767px) {
.ja.sp{
display:block
}
}
.en{
margin-top:8rem;
}






.p-index_treatment_top_ttl::before, .p-index_treatment_top_ttl::after {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 50%;
  width: 120px;
  height: 1px;
  background: url(../img/index/liner_dashed.png.webp) left top/contain no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
}

@media(max-width:768px){
.p-index_treatment_top_ttl::before, .p-index_treatment_top_ttl::after {
    width: 76px;
  }}
}


.c-calendar {
    width: 100%;
    border-spacing: .2rem;
    border-collapse: separate;
    font-weight: 600;
    color: var(--main-dark);
}

.c-calendar th.head {
    width: 36%;
    text-align: left;
    padding: .5rem 1rem;
}
.c-calendar th {
    background: #9d9387;
    color: #fff;;
    text-align: center;
    width: 9%;
    padding: .5rem;
}
.c-calendar td {
    background:  #fff;
    text-align: center;
    width: 9%;
    padding: .5rem;
}
.c-calendar td.head {
    background: #717171;
    color: #fff;
    width: 37%;
    text-align: left;
    padding: .5rem 1rem;
}
.p-index_treatment_top_ttl_jp {
    color: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 34px;
    font-size: 3.4rem;
    font-weight: 500;
}
.p-index_treatment_top_ttl .-sub {
    display: inline-block;
    padding: 0 20px;
    border: 1px solid #fff;
    height: 34px;
    line-height: 32px;
    margin-bottom: 6px;
    color: #fff;
    font-weight: 500;
}

.p-index_mv {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-index_mv {
    height: 420px;
  }
}
.p-index_mv_slider {
  margin-bottom: 0 !important;
}
.p-index_mv_slider li {
  width: 100%;
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-index_mv_slider li {
    min-height: 768px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .p-index_mv_slider li {
    height: 880px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv_slider li {
    height: 420px;
  }
}
.p-index_mv_slider li .p-index_mv_slider_img {
  height: 100vh;
}
@media screen and (min-width: 768px) {
  .p-index_mv_slider li .p-index_mv_slider_img {
    min-height: 768px;
  }
}
@media screen and (max-width: 1440px) and (min-width: 768px) {
  .p-index_mv_slider li .p-index_mv_slider_img {
    height: 880px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv_slider li .p-index_mv_slider_img {
    height: 420px;
  }
}
.p-index_mv_slider li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index_mv_slider .slick-dots {
  z-index: 1;
  right: 32px;
  bottom: 32px;
  left: unset;
  width: 90%;
  text-align: right;
  display:none;
}
@media screen and (min-width: 768px) {
  .p-index_mv_slider .slick-dots {
    max-width: 1280px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv_slider .slick-dots {
    bottom: 10px;
    right: 20px;
    width: calc(100% - 40px);
  }
}
.p-index_mv_slider .slick-dots li {
  width: 10px;
  height: 10px;
  min-height: unset;
  margin: 0 8px 0 0;
  min-height: inherit;
}
@media screen and (max-width: 767px) {
  .p-index_mv_slider .slick-dots li {
    width: 6px;
    height: 6px;
    margin: 0 5px 0 0;
  }
}
.p-index_mv_slider .slick-dots li::before {
  display: none;
}
.p-index_mv_slider .slick-dots li.slick-active button {
  background-color: #222;
}
.p-index_mv_slider .slick-dots li:last-child {
  margin: 0;
}
.p-index_mv_slider .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
}
.p-index_mv_slider .slick-dots li button::before {
  display: none;
}
.p-index_mv_cont {
  color: #222;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
z-index:1000;
}
@media screen and (max-width: 767px) {
  .p-index_mv_cont {
    padding: 20px 0 25px;
  }
}
.p-index_mv_head {
  width: 340px;
  margin: 0 auto 25px;
  background-color: #9d9387;
  height: 32px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_head {
    font-size: 13px;
    font-size: 1.3rem;
    width: 197px;
    height: 19px;
    line-height: 17px;
    margin-bottom: 14px;
  }
}
.p-index_mv_logo {
  width: 300px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .p-index_mv_logo {
    width: 174px;
  }
}
.p-index_mv_ttl {
  line-height: 1.4;
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-index_mv_ttl {
    font-size: 27px;
    font-size: 2.7rem;
  }
}
.p-index_mv_ttl span {
  font-size: 80px;
  font-size: 8rem;
  font-family: "Hina Mincho", serif;
  color: #d4a91c;
  font-weight: 500;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-index_mv_ttl span {
    font-size: 46px;
    font-size: 4.6rem;
  }
}
.p-index_mv_txt {
  line-height: 1.4;
  margin-top: 12px;
  font-size: 30px;
  font-size: 3rem;
  font-family: "Hina Mincho", serif;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .p-index_mv_txt {
    line-height: 1.55;
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 8px;
  }
}
.p-index_mv_sub {
  margin-top: 24px;
  font-size: 17px;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_sub {
    margin-top: 12px;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.p-index_mv_list {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list {
    margin-top: 16px;
  }
}
.p-index_mv_list .-item {
  display: inline-block;
  line-height: 1.1;
  margin-right: 24px;
  border-radius: 50%;
  background-color: #fff;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Hina Mincho", serif;
  -webkit-box-shadow: 0px 0px 12px 1px rgba(216, 209, 200, 0.4);
          box-shadow: 0px 0px 12px 1px rgba(216, 209, 200, 0.4);
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item {
    width: 27.73vw;
    height: 27.73vw;
    margin-right: 3vw;
  }
}
.p-index_mv_list .-item:last-child {
  margin-right: 0;
}
.p-index_mv_list .-item_inner {
  letter-spacing: -0.05em;
}
.p-index_mv_list .-item_inner .-brk {
  font-size: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item_inner .-brk {
    font-size: 14px;
  }
}
.p-index_mv_list .-item_inner .-main {
  color: #d4a91c;
}
.p-index_mv_list .-item_inner .-main .-txt {
  font-size: 28px;
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item_inner .-main .-txt {
    font-size: 17px;
  }
}
.p-index_mv_list .-item:nth-child(1) .-brk {
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(1) .-brk {
    font-size: 15px;
  }
}
.p-index_mv_list .-item:nth-child(1) .-main {
  font-size: 44px;
  font-size: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(1) .-main {
    font-size: 30px;
  }
}
.p-index_mv_list .-item:nth-child(2) .-brk {
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(2) .-brk {
    font-size: 12px;
  }
}
.p-index_mv_list .-item:nth-child(2) .-main {
  font-size: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(2) .-main {
    font-size: 17px;
  }
}
.p-index_mv_list .-item:nth-child(2) .-main .-num {
  font-size: 32px;
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(2) .-main .-num {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-index_mv_list .-item:nth-child(3) .-brk {
    margin-bottom: 3px;
  }
}
.p-index_mv_note {
  padding: 13px 0 38px;
  background-color: #edeeea;
}
@media screen and (max-width: 767px) {
  .p-index_mv_note {
    padding: 14px 0;
  }
}
.p-index_mv_note p {
  text-align: right;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  .p-index_mv_note p {
    font-size: 10px;
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}



/* 設備 */
.equipment {
  background: #fff;
  padding: 100px 0;
}

.equipment__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

/* スライド */
.equipment-card {
  text-align: center;
}

.equipment-card img {
  width: 100%;
  
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
	.faci-text{
		padding:2rem 0;
	}

/* テキスト（初期は非表示） */
.equipment-text {
  margin-top: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.equipment-text h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.equipment-text p {
  font-size: 14px;
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto;
}

/* 表示中（中央 or アクティブ）だけ表示 */
.swiper-slide-active .equipment-text {
  opacity: 1;
  pointer-events: auto;
}

/* ナビ */
.swiper-button-prev,
.swiper-button-next {
  color: #000;
}

/* PC余白 */
@media screen and (min-width: 1024px) {
  .swiper {
    padding-bottom: 80px;
  }
}

		.p-cardL__imgbox img{
			border-radius: 0;
		}
		.p-cardL__link {
    position: relative;
    width: 90%;
    border-radius: 0;
    background: var(--white);
    display: block;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .25);
}

		.btn-in{
			display: flex;
			justify-content: center;
		}
	@media(max-width:768px){
		.equipment {
    background: #fff;
    padding: 0;
}
		.equipment__inner {
  
    padding: 0;
}
.p-cardL {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 0rem;
        justify-content: center;
    }
	}
	
/* 設備ここまで*/


/* スタッフ紹介 */




/* お約束 */

		
/* お約束ここまで */


/* 固定スクロール */

		
	/* 固定スクロールここまで */		
	
		
		
		
		.l-philosophy {
    position: relative;
    background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/l-concept-bg.png) center center / cover no-repeat;
    padding: 10.7rem 0px;
}
		.l-philosophy__bg {
    background: #fff;
    width: 83%;
    min-width: 84rem;
    margin: 0 auto;
    padding: 10rem 0;
}
	.l-philosophy__p {
    position: relative;
    z-index: 3;
}
		.l-philosophy__inner {
    width: 78rem;
    margin: 0 auto;
}
				.l-philosophy__title {
    width: 72rem;
    margin: 0 auto 2.4rem auto;
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--main-dark);
    font-family: var(--sub-font);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.07em;
    center top / auto 15.8rem;
    
}
		.l-philosophy__img01 {
    position: absolute;
    top: 1.7171717172%;
    left: 4.4973544974%;
    z-index: 1;
}
		.l-philosophy__img01 img {
    width: 21.8915343915vw;
    height: auto;
    
}
		.l-philosophy__img02 {
    position: absolute;
    top: 26.2626262626%;
    left: -3.835978836%;
    z-index: 2;
}
		.l-philosophy__img02 img {
    width: 16.5343915344vw;
    height: auto;
    
}
	.l-philosophy__img03 {
    position: absolute;
    bottom: 9.69697%;
    right: -0.8597883598%;
    z-index: 2;
}
		.l-philosophy__img03 img {
    width: 16.5343915344vw;
    height: auto;
    
}
		.l-philosophy__img04 {
    position: absolute;
    bottom: -35.888889%;
    right: 2.7777777778%;
    z-index: 1;
}
		.l-philosophy__img04 img {
    width: 21.8915343915vw;
    height: auto;
    
}
@media(max-width:768px){
		    .l-philosophy__inner {
        width: 100%;
        padding-right: 2rem;
		padding-left: 2rem;
		padding-top: 3rem;
        position: relative;
        z-index: 3;
    }
	.l-philosophy__bg {
        background: #fff;
        width: 100%;
        min-width: auto;
        border-radius: 0;
        padding: 0;
    }
	.l-philosophy__title {
        width: 100%;
        margin: 0 auto 3.2rem auto;
        font-size: 2.4rem;
        letter-spacing: 0.05em;
    }
	.l-philosophy {
    position: relative;
    background: url(https://www.blancpa-umeda.com/wp-content/themes/blancpa_theme/common/img/l-concept-bg.webp) center center / cover no-repeat;
    padding: 6.6rem 1.5rem 9rem 1.5rem;
}
		}
		.l-concept__en{
			text-align: center;
			line-height: 0.88;
		}
		.l-concept__en p{
			color:#C9Bc9c;
			font-size:11rem;
		}
		
		@media(max-width:768px){
		    .l-concept__en p{
			color:#C9Bc9c;
			font-size:6rem;
		}
			.l-concept__en{
			text-align: center;
			line-height: 0.85;
		}
		
		
		

			@media(max-width:768px){
				.p-cardL {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
				.p-index_treatment_top li {
    margin: 0 auto;
    display: block;
    align-items: center;
    justify-content: center;
}
				    .p-index_treatment_top_cont {
        background-size: 227px;
        padding:2rem 0;
    }
				.p-index_treatment {
        padding: 70px 0 0;
    }
				.p-index_treatment_top{
					margin-top: 3rem;
				}
				.p-index_price {
            padding-bottom: 80px;
        }
				.docter-p.lazyloaded {
     height: auto;
    width: 70%;
}
				.promise-out{
					display: flex;
					justify-content: center;
				}
				
				}
				
				
		
			


