@charset "UTF-8";
/*-----ブレイクポイント-----*/
/*SP基準で作成*/
/* Box sizing rules */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/* Remove default margin */
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list], ol[role=list], ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img, picture {
  max-width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
}
/* Inherit fonts for inputs and buttons */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.Grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.Grid.\-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.Grid.\-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Grid.\-bottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.Grid.\-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.Grid.\-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.Grid.\-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.Grid.\-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.Grid.\-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.Grid.\-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.Grid.\-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.Grid.\-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.Cell {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.Cell.\-fill {
  width: 0;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.Cell.\-1of12 {
  width: 8.3333333333%;
}
.Cell.\-2of12 {
  width: 16.6666666667%;
}
.Cell.\-3of12 {
  width: 25%;
}
.Cell.\-4of12 {
  width: 33.3333333333%;
}
.Cell.\-5of12 {
  width: 41.6666666667%;
}
.Cell.\-6of12 {
  width: 50%;
}
.Cell.\-7of12 {
  width: 58.3333333333%;
}
.Cell.\-8of12 {
  width: 66.6666666667%;
}
.Cell.\-9of12 {
  width: 75%;
}
.Cell.\-10of12 {
  width: 83.3333333333%;
}
.Cell.\-11of12 {
  width: 91.6666666667%;
}
.Cell.\-12of12 {
  width: 100%;
}
@media (min-width: 856px) {
  .Grid.\-block__md {
    display: block;
  }
  .Cell.\-3of12__md {
    width: 25%;
  }
  .Cell.\-6of12__md {
    width: 50%;
  }
}
.hp_spNone {
  display: none !important;
}
@media (min-width: 856px) {
  .hp_spNone {
    display: block !important;
  }
}
.hp_mdNone {
  display: block !important;
}
@media (min-width: 856px) {
  .hp_mdNone {
    display: none !important;
  }
}
.hp_textL {
  text-align: left !important;
}
.hp_textR {
  text-align: right !important;
}
.hp_textC {
  text-align: center !important;
}
.brand {
  font-weight: bold;
  font-size: 20px;
}
.site-header {
  position: fixed;
  width: 100%;
  z-index: 999;
}
.site-header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  padding: 90px 20px 100px 55px;
  background: #fc0;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  display: block;
}
.nav__wrapper.active {
  visibility: visible;
  opacity: 1;
  background-color: #F0EDE8;
  width: 100%;
  overflow: scroll;
}
@media (min-width: 856px) {
  .nav__wrapper.active {
    top: 0;
    left: 0;
    margin: 0 auto;
    padding: 6% 5%;
  }
}
.ly_listHeader {
  max-width: 100%;
  margin: 0 auto;
  line-height: 2;
}
.bl_listHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
}
.bl_listHeader + * {
  margin: 1.5rem 0;
}
.bl_listHeader ul {
  display: none;
}
@media (min-width: 856px) {
  .bl_listHeader ul {
    display: block;
  }
}
.bl_listHeader ul li + * {
  margin: 1em 0;
}
.bl_listHeader .js_layer {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: 2;
  background: #F0EDE8;
  top: 0;
  left: 0;
  padding: 30px;
  padding: 90px 20px 100px 55px;
  -webkit-animation: SlideIn 0.3s;
  animation: SlideIn 0.3s;
}
.bl_listHeader .js_layer2nd {
  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  z-index: 3;
  background: #F0EDE8;
  top: 0;
  left: 0;
  padding: 30px;
  padding: 90px 20px 100px 55px;
  -webkit-animation: SlideIn 0.3s;
  animation: SlideIn 0.3s;
}
.bl_listHeader .btn_back2nd, .bl_listHeader .btn_back3rd {
  position: absolute;
  bottom: 20px;
}
@media (min-width: 856px) {
  .bl_listHeader .btn_back2nd, .bl_listHeader .btn_back3rd {
    display: none;
  }
}
@-webkit-keyframes SlideIn {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes SlideIn {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@media (min-width: 856px) {
  .btn_1st {
    font-size: 18px;
    width: 13%;
    margin: 0 20px 0 0;
  }
}
.btn_stop a {
  pointer-events: none;
}
@media (min-width: 856px) {
  .btn_stop a {
    pointer-events: visible;
  }
}
@media (min-width: 856px) {
  .btn_2nd + ul, ul.bl_list2nd_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.btn_2nd + ul li, ul.bl_list2nd_pc li {
  margin-top: 0;
}
.btn_2nd + ul li + *, ul.bl_list2nd_pc li + * {
  margin: 1em 0;
}
@media (min-width: 856px) {
  .btn_2nd + ul li::before, .bl_list2nd_pc li a::before {
    content: "･";
  }
}
.icon_arrow45deg a::after {
  content: "";
  display: inline-block;
  width: 5.731px;
  height: 10.047px;
  margin-left: 10px;
  background: url(../images/icon_arrow45deg.svg) no-repeat center center;
  position: relative;
}
@media (min-width: 856px) {
  .icon_arrow45deg a::after {
    content: none;
  }
}
/*ミックスインを定義*/ :root {
  --color_btnTel: #323232;
  --color_base: #242424;
  --color_accent: #9D8264;
  --color_link: #957C54;
  --color_btnFix: #A28F71;
  --color_btnReserve: #B79975;
  --color_headingSub: #BCA98C;
  --color_bd: #D9D9D9;
  --color_bdSns: #C6C6C6;
  --color_btnFix: #848484;
  --color_menu: #F0EDE8;
  --bg_cta: #F7EFE7;
  --bg_table: #F8F7F5;
  --bg_grey: #F7F7F7;
}
body {
  /* font-family: 'Noto Serif JP', serif;*/
  font-family: DNPShueiMinPr6, serif;
  font-style: normal;
  font-weight: 200;
  font-size: 16px;
  line-height: 2;
  color: var(--color_base);
}
@media (min-width: 856px) {
  body {
    line-height: 2.5;
  }
}
body.fixed {
  overflow: hidden;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a {
  color: var(--color_base);
  text-decoration: none;
}
iframe {
  display: block;
}
table {
  border-spacing: 0;
}
th {
  font-weight: normal;
}
h2, h3 {
  font-weight: normal;
}
/*———————————–
header
———————————–*/
.js_fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}
.js_fixed_2 {
  overflow: hidden;
}
.js_openbtn {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 23px;
  z-index: 999;
}
@media (min-width: 1170px) {
  .js_openbtn {
    right: 40px;
  }
}
/*ボタン内側*/
.js_openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  z-index: 999;
  left: 0;
  height: 1px;
  border-radius: 2px;
  background: #B79975;
  width: 30px;
}
.js_openbtn span:nth-of-type(1) {
  top: 0;
}
.js_openbtn span:nth-of-type(2) {
  top: 11px;
}
.js_openbtn span:nth-of-type(3) {
  top: 22px;
}
.js_openbtn.active span:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
  width: 100%;
}
.js_openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.js_openbtn.active span:nth-of-type(3) {
  top: 0;
  left: 0;
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
  width: 100%;
}
.un_header {
  border-top: 7px solid #000;
  height: 83px;
  padding: 15px 18px 15px 23px;
  background: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1170px) {
  .un_header {
    height: 130px;
    background: #fff;
  }
}
@media (min-width: 856px) {
  .un_headerSns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.un_headerSns_icon {
  width: 21px;
  height: 21px;
}
@media (min-width: 856px) {
  .un_headerSns_icon {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 856px) {
  .un_headerSns_icon + * {
    margin-left: 17px;
  }
}
.un_headerSns_icon a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 856px) {
  .un_headerSns_icon a img {
    height: 32px;
  }
}
.un_headerSns_icon p {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #848484;
  line-height: 2;
  text-align: center;
}
.bl_logo img {
  height: 54px;
}
@media (min-width: 1170px) {
  .bl_logo img {
    height: auto;
  }
}
/*———————————–
グローバルメニュー
———————————–*/
@media (min-width: 856px) {
  .ly_navHeader {
    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: 60px;
    margin: 0 auto;
  }
}
.ly_navHeader li + * {
  margin-left: 60px;
}
@media (min-width: 856px) {
  .bl_navHeader {
    font-size: 15px;
    letter-spacing: 0.08em;
    background: #f0ede8;
  }
}
/*———————————–
breadcrumb
———————————–*/
.ly_breadcrumb {
  margin: 5px 10px 0 10px;
}
.bl_breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #5D5D5D;
  font-size: 12px;
}
.bl_breadcrumb li {
  margin-right: 26px;
}
.bl_breadcrumb li:last-child {
  margin-right: 0;
}
.bl_breadcrumb a {
  color: var(--color_link);
}
.bl_breadcrumb_arrow {
  position: relative;
  display: inline-block;
}
.bl_breadcrumb_arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #5D5D5D;
  border-right: solid 1px #5D5D5D;
  position: absolute;
  right: -15px;
  top: 9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 856px) {
  .bl_breadcrumb_arrow::after {
    top: 11px;
  }
}
/*———————————–
コンテンツ部の共通レイアウト
———————————–*/
.ly_wrapper {
  margin-right: 4%;
  margin-left: 4%;
}
@media (min-width: 856px) {
  .ly_wrapper {
    max-width: 1100px;
  }
}
@media (min-width: 1170px) {
  .ly_wrapper {
    margin: 0 auto;
  }
}
.ly_wrapper.ly_wrapper__menu {
  margin-right: 10px;
  margin-left: 10px;
}
@media (min-width: 856px) {
  .ly_wrapper.ly_wrapper__menu {
    margin-right: 32px;
    margin-left: 32px;
  }
}
@media (min-width: 1280px) {
  .ly_wrapper.ly_wrapper__menu {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 856px) {
  .ly_wrapper.ly_wrapper__menu {
    max-width: 1170px;
  }
}
.ly_commonHight {
  margin-top: 0px;
}
@media (min-width: 856px) {
  .ly_commonHight {
    margin-top: 0px;
  }
}
@media (min-width: 856px) {
  .ly_commonWidth {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*———————————–
ページ共通の見出し
———————————–*/
.mod_heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mod_heading .bl_headingLv2, .mod_heading .bl_headingLv3 {
  text-align: center;
  font-weight: normal;
}
.mod_heading .bl_headingLv2 {
  /* font-family: 'Noto Serif JP', serif;*/
  font-family: DNPShueiMinPr6, serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1;
  font-weight: normal;
  margin-top: 50px;
  margin-bottom: 0;
}
.mod_heading .bl_headingLv3 {
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 8px;
  line-height: 1;
  color: #bca98c;
}
/*———————————–
共通のCTAエリア
———————————–*/
.bg_cta {
  background-color: var(--bg_cta);
}
.ly_cta {
  margin-top: 80px;
  padding: 34px;
}
@media (min-width: 428px) {
  .ly_cta {
    padding: 34px 40px;
  }
}
@media (min-width: 1170px) {
  .ly_cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 100px;
    padding: 40px 0;
  }
}
.bl_ctaTel {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 856px) {
  .bl_ctaTel {
    width: 50%;
  }
}
.bl_ctaTel p {
  margin-top: 16px;
}
.bl_ctaTel .bl_headingLv3_ctaTel {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (min-width: 428px) {
  .bl_ctaTel .bl_headingLv3_ctaTel {
    font-size: 18px;
  }
}
.bl_ctaTel .bl_ctaTel_number {
  font-size: 34px;
  font-weight: bold;
  /* font-family: 'Noto Serif JP', serif;*/
  font-family: DNPShueiMinPr6, serif;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 428px) {
  .bl_ctaTel .bl_ctaTel_number {
    font-size: 45px;
  }
}
.bl_ctaTel .bl_ctaTel_number a {
  color: var(--color_btnReserve);
}
.bl_ctaTel .bl_ctaTel_time {
  font-size: 15px;
  line-height: 1.8;
}
@media (min-width: 428px) {
  .bl_ctaTel .bl_ctaTel_time br {
    display: none;
  }
}
.bl_ctaReserve {
  margin-top: 30px;
  padding-top: 26px;
  text-align: center;
  border-top: 1px solid #B79975;
}
@media (min-width: 1170px) {
  .bl_ctaReserve {
    width: 50%;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-left: 1px solid #B79975;
  }
}
.bl_ctaReserve .bl_headingLv3_ctaReserve {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.9444444444;
  /* font-family: 'Noto Serif JP', serif;*/
  font-family: DNPShueiMinPr6, serif;
  font-weight: 600;
}
@media (min-width: 856px) {
  .bl_ctaReserve .bl_headingLv3_ctaReserve {
    line-height: 1;
  }
}
.bl_ctaReserve .bl_ctaReserve_btn {
  margin: 20px auto 0;
}
@media (min-width: 856px) {
  .bl_ctaReserve .bl_ctaReserve_btn {
    margin: 12px auto 0;
  }
}
.bl_ctaReserve .bl_ctaReserve_time {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-top: 20px;
}
@media (min-width: 856px) {
  .bl_ctaReserve .bl_ctaReserve_time {
    margin-top: 9px;
  }
}
/*———————————–
ボタンの基本要素
———————————–*/
.el_btn {
  color: #fff;
  padding: 20px;
  font-size: 18px;
  width: 100%;
  max-width: 365px;
  display: inline-block;
  margin: 0 auto;
  line-height: 1.2;
  background: rgba(149, 124, 84, 0.05);
  border: 1px solid #957C54;
  color: #957C54;
  text-align: center;
  font-size: 15px;
}
.el_btn:hover {
  background: rgba(162, 131, 78, 0.1);
}
@media (min-width: 856px) {
  .el_btn {
    width: 300px;
    max-width: 100%;
    font-size: 16px;
  }
}
@media (min-width: 856px) {
  .el_btn.el_btn_access {
    margin-left: 0;
  }
}
.el_btn.el_btn__pale {
  color: #FFFFFF;
  background: #B79975;
  width: 100%;
  max-width: 100%;
  text-align: center;
  border: none;
}
@media (min-width: 856px) {
  .el_btn.el_btn__pale {
    font-size: 15px;
    width: 390px;
  }
}
.el_btn.el_btn__pale:hover {
  background: #d1b89a;
}
.el_btn.el_btn__white {
  border: 1px solid var(--color_link);
  background: #fff;
  color: var(--color_link);
  max-width: 300px;
  max-height: 70px;
}
.el_btn.el_btn__white:hover {
  opacity: 0.5;
  color: #fff;
  background: linear-gradient(281deg, rgb(189, 139, 53) 0%, rgb(221, 182, 95) 100%);
}
.mod_access {
  margin-top: 50px;
}
@media (min-width: 856px) {
  .mod_access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-top: 45px;
    margin-right: 32px;
    margin-left: 32px;
    max-width: 1100px;
  }
}
@media (min-width: 1170px) {
  .mod_access {
    margin: 45px auto 0;
  }
}
.mod_access .mod_headingLv3_access {
  margin-top: 35px;
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--color_accent);
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
}
@media (min-width: 856px) {
  .mod_access .mod_headingLv3_access {
    margin-top: 0;
  }
}
.mod_access .mod_headingLv3_access + p {
  margin-top: 32px;
  font-size: 15px;
  letter-spacing: 0.05em;
  /* font-family:"Noto Sans JP", sans-serif;*/
  font-family: YuGothic, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.8;
}
@media (min-width: 856px) {
  .mod_access .mod_headingLv3_access + p {
    margin-top: 25px;
    line-height: 1.7333333333;
  }
}
.mod_access .mod_accessImg {
  padding: 0 0 0 0px;
}
@media (min-width: 856px) {
  .mod_access .mod_accessImg {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 0 20px;
  }
}
.mod_access .bl_accessImg img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mod_access .mod_accessDetail {
  line-height: 1.8;
  padding: 0.5rem 0 0 0;
}
.mod_access .bl_accessImg img {
  -o-object-fit: cover;
  object-fit: cover;
}
.mod_accessInner {
  margin-right: 32px;
  margin-left: 32px;
}
@media (min-width: 856px) {
  .mod_accessInner {
    max-width: 1170px;
    margin: 0;
  }
}
@media (min-width: 1170px) {
  .mod_accessInner {
    margin: 0 auto;
  }
}
.mod_accessDetail {
  /* font-family:"Noto Sans JP", sans-serif;*/
  font-family: YuGothic, sans-serif;
  font-style: normal;
  font-weight: bold;
}
.mod_accessDetail h4 {
  font-size: 15px;
}
.mod_accessDetail ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
}
@media (min-width: 856px) {
  .mod_accessDetail ul {
    line-height: 1.8666666667;
  }
}
.mod_accessBtn {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 856px) {
  .mod_accessBtn {
    margin-top: 36px;
  }
}
.mod_accessBtn .el_btn {
  font-family: "Noto Serif JP", serif;
}
.mod_googleMap {
  margin-top: 45px;
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 856px) {
  .mod_googleMap {
    max-height: 362px;
  }
}
.mod_googleMap iframe {
  width: 100%;
  height: 100%;
  display: block;
}
/*———————————–
footer
———————————–*/
.bl_footer {
  background: #f1eeea;
}
.bl_navFooter {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 30px;
}
.bl_listFooter_icon li + *::before {
  content: "-";
}
footer {
  border-top: 1px solid #f1eeea;
}
.ly_navFooter {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}
@media (min-width: 856px) {
  .ly_navFooter {
    margin-top: 20px;
    flex-direction: row;
    gap: 40px;
  }
}
.bl_order1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 856px) {
  .bl_order1 {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
.bl_order2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 856px) {
  .bl_order2 {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
.bl_order3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
@media (min-width: 856px) {
  .bl_order3 {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}
.bl_order4 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 0;
}
@media (min-width: 856px) {
  .bl_order4 {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
    margin-top: 0;
  }
}
.ly_logoFooter {
  margin-top: 40px;
}
.ly_footer {
  padding-top: 20px;
  margin-top: 20px;
}
@media (min-width: 856px) {
  .ly_footer {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.bl_logoFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ly_snsFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 22px;
  height: 18px;
}
.ly_snsFooter li + * {
  margin-left: 13px;
}
.ly_snsFooter li svg {
  height: 18px;
}
.ly_smallFooter {
  color: #A8A8A8;
  background: #000;
  text-align: center;
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 18px;
  padding: 14px 17px 17px;
}
@media (min-width: 856px) {
  .ly_smallFooter {
    margin-top: 32px;
  }
}
/*———————————–
リストアイコン
———————————–*/
.icon_linkOuter li a::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-left: 10px;
  background: url(../images/icon_linkOuter.svg) no-repeat center center;
}
/*———————————–
固定ボタン
———————————–*/
.ly_fixBtn {
  position: fixed;
  z-index: 3;
  padding-right: 3px;
  padding-left: 3px;
  max-width: 100%;
  width: 100%;
  bottom: 8px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 1170px) {
  .ly_fixBtn {
    right: 12px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
@media (min-width: 1170px) {
  .ly_fixBtn .bl_fixBtnLeft {
    display: none;
  }
}
.ly_fixBtn .bl_fixBtnRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ly_fixBtn .bl_fixBtn_item {
  width: 94px;
  height: 94px;
}
@media (min-width: 1170px) {
  .ly_fixBtn .bl_fixBtn_item {
    width: 105px;
    height: 105px;
  }
}
.ly_fixBtn .bl_fixBtn_item + * {
  margin-left: 8px;
}
.ly_fixBtn .bl_fixBtn_item:hover {
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  opacity: 0.7;
}
.bl_swiperContainer {
  position: relative;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper-button-prev, .swiper-button-next {
  width: 19px;
  height: 34px;
  top: 30%;
}
.swiper-button-prev {
  content: "prev";
  left: -27px;
}
.swiper-button-prev::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrowThin.svg) no-repeat center center;
  width: 19.935px;
  height: 34.451px;
}
.swiper-button-next {
  right: -27px;
}
.swiper-button-next::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrowThin_right.svg) no-repeat center center;
  width: 19.935px;
  height: 34.451px;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: -52px;
}
.swiper-pagination-bullet {
  background: #bca98c;
  width: 4px;
  height: 4px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #957C54;
}
.bl_swiperContainer__blog .swiper-horizontal > .swiper-pagination-bullets, .bl_swiperContainer__blog .swiper-pagination-bullets.swiper-pagination-horizontal, .bl_swiperContainer__blog .swiper-pagination-custom, .bl_swiperContainer__blog .swiper-pagination-fraction {
  bottom: -36px;
  line-height: 1;
}
.bl_swiperContainer__blog .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  margin: 0 7.5px;
}
.bl_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.bl_menu .bl_menu_img {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.bl_menu img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (min-width: 856px) {
  .bl_menu:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media (min-width: 856px) {
  .bl_menu:hover .bl_menu_inner {
    opacity: 0.5;
  }
}
.bl_menu .bl_menu_inner {
  padding-right: 35px;
  display: inline-block;
  text-align: left;
  background: rgba(240, 237, 232, 0.5);
  padding: 30px 22px;
  min-height: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner {
    padding: 30px 15px 50px 35px;
    min-height: 180px;
  }
}
.bl_menu .bl_menu_inner h3 {
  font-size: 19px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #9d8264;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner h3 {
    font-size: 22px;
  }
}
.bl_menu .bl_menu_inner h3 span {
  font-size: 14px;
  margin-left: 1em;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner h3 span {
    font-size: 15px;
  }
}
.icon_arrow {
  position: relative;
}
.icon_arrow::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrow.svg) no-repeat center center;
  width: 17px;
  height: 32px;
}
.ly_flexMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 856px) {
  .ly_flexMenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 35px;
    -webkit-column-gap: 2.99%;
    -moz-column-gap: 2.99%;
    column-gap: 2.99%;
  }
  .ly_flexMenu .bl_flexMenu_item, .ly_flexMenu .bl_flexMenu_item2, .ly_flexMenu .bl_flexMenu_item3, .ly_flexMenu .bl_flexMenu_item4 {
    width: calc(50% - 17.5px);
    max-width: 568px;
  }
  .ly_flexMenu .bl_flexMenu_item5, .ly_flexMenu .bl_flexMenu_item6, .ly_flexMenu .bl_flexMenu_item7 {
    width: 31.3%;
    max-width: 366px;
  }
}
.ly_flexMenu:nth-child(2) {
  margin-top: 35px;
}
/*———————————–
採用フォームページ
———————————–*/
.ly_formSummary {
  margin-top: 20px;
}
@media (min-width: 856px) {
  .ly_formSummary {
    margin-top: 40px;
    text-align: center;
  }
}
.ly_formPrivacy {
  margin-top: 70px;
  padding-bottom: 55px;
  border-bottom: 1px solid #F7EFE7;
}
@media (min-width: 856px) {
  .ly_formPrivacy {
    border-bottom: none;
    padding-bottom: 110px;
  }
}
.ly_formPrivacy .bl_headingLv2 {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.6666666667;
}
.ly_formPrivacy .bl_formPrivacy_innner {
  margin-top: 40px;
  height: 400px;
  overflow: scroll;
  overflow-x: hidden;
}
.ly_formPrivacy .bl_formPrivacy_innner h3, .ly_formPrivacy .bl_formPrivacy_innner p {
  letter-spacing: 0.06em;
  line-height: 2.25;
  font-size: 16px;
}
.ly_formPrivacy .bl_formPrivacy_innner {
  margin-top: 40px;
}
.ly_formPrivacy .bl_formPrivacy_innnerGroup {
  margin-top: 1em;
}
table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}
.bl_colorRequired {
  color: #e22424;
  margin-left: 8px;
}
input, select {
  height: 50px;
}
input, textarea {
  margin: 0;
  background: #f7f7f7;
  border: #D6D6D6 1px solid;
  padding: 17px 22px;
  width: 100%;
  max-width: 100%;
}
textarea {
  height: 262px;
}
select {
  margin: 0;
  background: #f7f7f7;
  border: #D6D6D6 1px solid;
  padding: 17px 22px;
}
::-webkit-input-placeholder {
  color: #969595;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
::-moz-placeholder {
  color: #969595;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
:-ms-input-placeholder {
  color: #969595;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
::-ms-input-placeholder {
  color: #969595;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
::placeholder {
  color: #969595;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
.ly_contact-table {
  margin-top: 45px;
}
@media (min-width: 856px) {
  .ly_contact-table {
    margin-top: 65px;
  }
}
.bl_contact-table {
  letter-spacing: 0.06em;
  line-height: 2.25;
}
.bl_contact-table tr {
  border-top: 1px solid #D9D9D9;
  display: block;
  padding: 18.5px 0;
}
@media (min-width: 856px) {
  .bl_contact-table tr {
    padding: 23.5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bl_contact-table tr:last-child {
  border-bottom: 1px solid #D9D9D9;
}
.bl_contact-table th, .bl_contact-table td {
  border: none;
  padding: 0;
  font-size: 16px;
  display: inline-block;
}
.bl_contact-table th {
  width: 100%;
  text-align: left;
}
@media (min-width: 856px) {
  .bl_contact-table th {
    width: 34.67%;
  }
}
.bl_contact-table td {
  width: 100%;
  margin-top: 8px;
}
@media (min-width: 856px) {
  .bl_contact-table td {
    width: 65.33%;
    margin-top: 0;
  }
}
.bl_contact-table .radio-list > span > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_contact-table .radio-list > span > label input[type=radio] {
  width: 17px;
  height: 1em;
}
.bl_contact-table .radio-list > span > label span {
  margin-left: 8px;
}
@media (min-width: 856px) {
  .bl_contact-table input[type=text] + p, .bl_contact-table input[type=email] + p {
    margin-top: 15px;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 2.1428571429;
  }
}
.bl_contact-table input[name=age] {
  width: 100px;
  margin-right: 16px;
}
.bl_contact-table .bl_formAdress .bl_formAdress_post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_contact-table .bl_formAdress .bl_formAdress_post input {
  margin-left: 12px;
}
.bl_contact-table .bl_formAdress div {
  margin-top: 12px;
}
.bl_contact-table .bl_formSelect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_contact-table .bl_formSelect div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_contact-table .bl_formSelect div + * {
  margin-left: 16px;
}
.bl_contact-table .bl_formSelect div span {
  margin-left: 8px;
}
.button-wrap {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 856px) {
  .button-wrap {
    margin: 55px auto 0;
  }
}
.button-wrap button[type=submit] {
  padding: 17px;
  text-align: center;
  margin: 0 auto;
  color: #957C54;
  border: #957C54 1px solid;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media (min-width: 856px) {
  .button-wrap button[type=submit] {
    padding: 27px 124px;
  }
}
.button-wrap.button-wrap__confirm {
  max-width: 350px;
}
@media (min-width: 856px) {
  .button-wrap.button-wrap__confirm {
    max-width: 630px;
  }
}
@media (min-width: 856px) {
  .button-wrap.button-wrap__confirm button {
    width: 300px;
  }
}
.button-wrap.button-wrap__confirm button[type=submit] {
  padding: 16px 24px;
  margin: initial;
}
.button-wrap.button-wrap__confirm button[type=submit] + * {
  margin-left: 30px;
}
.button-wrap.button-wrap__confirm button[type=submit]:hover {
  background: rgba(162, 131, 78, 0.1);
}
.button-wrap.button-wrap__confirm button[name=submit] {
  background: #B79975;
  color: #fff;
  border: none;
}
.button-wrap.button-wrap__confirm button[name=submit]:hover {
  background: #d1b89a;
}
.mw_wp_form_confirm .button-wrap {
  max-width: 350px;
}
@media (min-width: 856px) {
  .mw_wp_form_confirm .button-wrap {
    max-width: 630px;
  }
}
@media (min-width: 856px) {
  .mw_wp_form_confirm .button-wrap button {
    width: 300px;
  }
}
.mw_wp_form_confirm .button-wrap button[type=submit] {
  padding: 16px 24px;
  margin: initial;
}
.mw_wp_form_confirm .button-wrap button[type=submit] + * {
  margin-left: 30px;
}
.mw_wp_form_confirm .button-wrap button[type=submit]:hover {
  background: rgba(162, 131, 78, 0.1);
}
.mw_wp_form_confirm .button-wrap button[name=submit] {
  background: #B79975;
  color: #fff;
  border: none;
}
.mw_wp_form_confirm .button-wrap button[name=submit]:hover {
  background: #d1b89a;
}
.bl_formCompleted {
  border-bottom: 1px solid #f7efe7;
  padding-bottom: 110px;
}
@media (min-width: 856px) {
  .bl_formCompleted {
    border: none;
    padding-bottom: 70px;
  }
}
.bl_formCompleted_ttl {
  margin-top: 65px;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_formCompleted_ttl {
    margin-top: 75px;
  }
}
.bl_formCompleted_txt {
  margin-top: 55px;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_formCompleted_txt {
    margin-top: 70px;
  }
}
.ly_formCompleted_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_formCompleted_btn {
    margin-top: 60px;
  }
}
.grecaptcha-badge {
  bottom: 120px !important;
}
span.error {
  color: #e22424;
}
.mw_wp_form_preview .privacy-check {
  display: none;
}
main {
  padding-top: 90px;
  padding-bottom: 45px;
}
@media (min-width: 856px) {
  main {
    padding-top: 143px;
    padding-bottom: 90px;
  }
}
@media (min-width: 1170px) {
  main {
    padding-top: 190px;
    padding-bottom: 90px;
  }
}
/*———————————–
下層の見出し
———————————–*/
.bl_heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 30px auto 20px auto;
}
.lyAbout .bl_heading {
  margin: 30px auto 15px auto;
}
@media (min-width: 856px) {
  .bl_heading {
    margin: 60px auto 40px auto;
  }
  .lyAbout .bl_heading {
    margin: 0px auto 30px auto;
  }
}
.bl_heading .bl_headingLv1, .bl_heading .bl_headingLv2, .bl_heading .bl_headingLv3, .bl_heading .bl_heading_technique {
  text-align: center;
}
.bl_heading .bl_headingLv1 {
  font-family: DNPShueiMinPr6, serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.5;
  margin-top: 0px;
  clamp(19px, 2.2vw, 22px);
}
.bl_heading .bl_headingLv2 {
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 8px;
  line-height: 1;
  color: #bca98c;
}
.bl_heading .bl_heading_technique {
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 8px;
  line-height: 1;
  color: #bca98c;
}
.bl_heading .bl_headingLv3 {
  font-family: DNPShueiMinPr6, serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
  font-weight: normal;
}
.bl_heading_border {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
  position: relative;
  padding-top: 11px;
}
.bl_heading_border::before {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background-color: #B79975;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.bl_headingLv2 {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_headingLv2 {
    font-size: 20px;
    line-height: 1.8;
  }
}
.bl_headingLv2.bl_headingLv2__gold {
  color: #bca98c;
}
.bl_headingLv3.bl_headingLv3__stain {
  font-family: YuGothic, sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.03em;
  line-height: 28px;
  color: #b79975;
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 856px) {
  .bl_headingLv3.bl_headingLv3__stain {
    font-size: 18px;
    letter-spacing: 0.03em;
    line-height: 28px;
    margin-top: 0;
  }
}
/*———————————–
サイトマップ
———————————–*/
ul.bl_list .bl_listItem {
  margin-top: 7px;
}
@media (min-width: 1170px) {
  ul.bl_list .bl_listItem {
    margin-top: 24px;
  }
}
ul.bl_list .bl_listItem > .bl_list_2nd > li {
  margin-left: 16px;
}
@media (min-width: 856px) {
  ul.bl_list .bl_listItem > .bl_list_2nd > li {
    margin-left: 45px;
  }
}
ul.bl_list .bl_listItem > .bl_list_2nd > li a::before {
  content: "-";
}
@media (min-width: 856px) {
  ul.bl_list .bl_listItem > .bl_list_2nd > li a::before {
    content: "･";
  }
}
@media (min-width: 856px) {
  ul.bl_list .bl_listItem > .bl_list_2nd > li.hp_iconNone > a::before {
    content: none;
  }
}
@media (min-width: 856px) {
  ul.bl_list .bl_list__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  ul.bl_list .bl_list__flex li + * {
    margin-left: 16px;
  }
}
ul.bl_list .bl_list_3rd {
  margin-left: 16px;
}
@media (min-width: 856px) {
  ul.bl_list .bl_list_3rd {
    margin-left: 0;
  }
}
/*———————————–
プライバシーポリシー
———————————–*/
.bl_privacyBody {
  letter-spacing: 0.06em;
}
.bl_privacyGroup {
  margin-top: 2.5em;
}
.bl_privacyGroup h3 {
  font-weight: normal;
}
.bl_privacyAddress {
  margin-top: 80px;
}
@media (min-width: 856px) {
  .bl_privacyAddress {
    margin-top: 40px;
  }
}
/*———————————–
採用情報
———————————–*/
@media (min-width: 856px) {
  .ly_mvSubpage {
    margin-right: auto;
    margin-left: auto;
    max-width: 1100px;
  }
}
.ly_mvSubpage .bl_headingLv2 + picture {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_mvSubpage .bl_headingLv2 + picture {
    margin-top: 60px;
  }
}
.ly_mvSubpage .bl_mvSubpage_summary {
  margin-top: 55px;
}
@media (min-width: 856px) {
  .ly_mvSubpage .bl_mvSubpage_summary {
    margin-top: 30px;
  }
}
.bl_summary {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .bl_summary {
    margin-top: 50px;
  }
}
.bl_summary .bl_summaryTitle {
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  color: #9d8264;
  font-weight: normal;
}
@media (min-width: 856px) {
  .bl_summary .bl_summaryTitle {
    line-height: 2.25;
  }
}
.bl_summary .bl_summaryTxt {
  margin-top: 40px;
  letter-spacing: 0.06em;
  line-height: 2.25;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_summary .bl_summaryTxt {
    margin-top: 45px;
  }
}
.bl_summary.bl_summary__2nd {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .bl_summary.bl_summary__2nd {
    margin-top: 30px;
  }
}
.bl_summary.bl_summary__2nd .bl_summaryTxt {
  margin-top: 0;
}
.ly_linkRecruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
}
@media (min-width: 856px) {
  .ly_linkRecruit {
    margin: 70px auto 0;
  }
}
.ly_linkRecruit li {
  width: 50%;
  text-align: center;
  border-top: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
}
@media (min-width: 856px) {
  .ly_linkRecruit li {
    border-left: 1px solid #c6c6c6;
  }
}
.ly_linkRecruit li + * {
  border-left: 1px solid #c6c6c6;
}
@media (min-width: 856px) {
  .ly_linkRecruit li + * {
    border-right: 1px solid #c6c6c6;
  }
}
.ly_linkRecruit li a {
  display: block;
  padding: 10px;
}
.ly_linkRecruit li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ly_linkRecruit li a span img {
  margin-right: 20px;
}
.ly_tableRecruit {
  margin-top: 60px;
}
@media (min-width: 856px) {
  .ly_tableRecruit {
    margin: 90px auto 0;
  }
}
.ly_tableRecruit + * {
  margin-top: 90px;
}
@media (min-width: 856px) {
  .ly_tableRecruit + * {
    margin-top: 150px;
  }
}
.bl_tableRecruit + * {
  margin-top: 90px;
}
@media (min-width: 1170px) {
  .bl_tableRecruit + * {
    margin-top: 150px;
  }
}
.bl_tableRecruit_inner {
  margin-top: 25px;
}
@media (min-width: 856px) {
  .bl_tableRecruit_inner {
    margin-top: 30px;
  }
}
.bl_tableRecruit_inner dl {
  line-height: 1.875;
  border-top: 1px solid #D9D9D9;
}
@media (min-width: 856px) {
  .bl_tableRecruit_inner dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bl_tableRecruit_inner dl:last-child {
  border-bottom: 1px solid #D9D9D9;
}
.bl_tableRecruit_inner dt {
  background: #F8F7F5;
  padding: 9.5px 24px;
}
@media (min-width: 856px) {
  .bl_tableRecruit_inner dt {
    width: 20.56%;
  }
}
.bl_tableRecruit_inner dd {
  padding: 9.5px 24px;
}
@media (min-width: 856px) {
  .bl_tableRecruit_inner dd {
    width: 79.44%;
  }
}
.ly_btnRecruit {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 856px) {
  .ly_btnRecruit {
    margin-top: 45px;
  }
}
/*———————————–
アクセス
———————————–*/
.mod_accessDetail, .mod_headingLv4_access {
  font-weight: normal;
}
.mod_accessInfo {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 90px;
}
@media (min-width: 856px) {
  .mod_accessInfo {
    margin-top: 105px;
  }
}
.bl_accessInfo {
  text-align: center;
  margin-top: 45px;
}
.bl_accessInfo p {
  display: inline-block;
  text-align: left;
}
.bl_accessInfo P + img {
  margin-top: 20px;
}
.ly_mapAccess {
  margin-top: 50px;
}
@media (min-width: 856px) {
  .ly_mapAccess {
    margin-top: 40px;
  }
}
/*———————————–
クララについて about
———————————–*/
.ly_hedaingLv3_about {
  margin-top: 0px;
}
@media (min-width: 856px) {
  .ly_hedaingLv3_about {
    margin-top: 0px;
  }
}
.ly_hedaingLv3_about + p {
  margin-top: 0px;
}
@media (min-width: 856px) {
  .ly_hedaingLv3_about + p {
    margin-top: 0px;
  }
}
.ly_grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
}
.ly_grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.ly_grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.ly_grid > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.ly_grid > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media (min-width: 856px) {
  .ly_grid {
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: minmax(300px, 550px);
  }
  .ly_grid > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .ly_grid > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .ly_grid > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.bl_grid {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 1/1/2/3;
  margin-left: 32px;
  margin-right: 32px;
  padding-bottom: 50px;
}
@media (min-width: 856px) {
  .bl_grid {
    padding-bottom: 0;
  }
}
@media (min-width: 856px) {
  .bl_grid {
    margin-left: min(11.72%, 75px);
    margin-right: min(11.72%, 75px);
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
.bl_gridSide img, .bl_gridSide2 img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.bl_gridSide {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
@media (min-width: 856px) {
  .bl_gridSide {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
.bl_gridSide2 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
@media (min-width: 856px) {
  .bl_gridSide2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
}
.bl_gridClinic {
  display: flex;
  gap: 0px;
  flex-direction: column;
  align-items: center;
  margin: 30px 0;
}
@media (min-width: 856px) {
  .bl_gridClinic {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin: 60px 0;
  }
}
.rev {
  flex-direction: column;
}
@media (min-width: 856px) {
  .rev {
    flex-direction: row-reverse;
  }
}
.bl_gridClinic .bl_gridClinic_ttl {
  text-align: center;
}
.bl_gridClinic .bl_gridClinic_ttl h3 {
  font-size: 18px;
  letter-spacing: 0.05rem;
  line-height: 2;
  color: #bca98c;
}
@media (min-width: 856px) {
  .bl_gridClinic .bl_gridClinic_ttl {
    text-align: left;
  }
  .bl_gridClinic .bl_gridClinic_ttl h3 {
    font-size: 20px;
    line-height: 2;
  }
}
.bl_gridClinic .bl_gridClinic_img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  img {
    object-fit: cover;
  }
}
@media (min-width: 856px) {
  .bl_gridClinic .bl_gridClinic_img {
    width: 100%;
    height: auto;
  }
}
.bl_gridClinic .bl_gridClinic_body {
  width: 96%;
  margin: 10px auto;
}
@media (min-width: 856px) {
  .bl_gridClinic .bl_gridClinic_body {
    width: 450px;
    margin-top: 20px;
  }
  .bl_gridClinic .bl_gridClinic_body p {
    letter-spacing: 0.06em;
    line-height: 2.25;
  }
}
.bl_gridClinic .bl_gridClinic_body .ly_gridClinic_bodyBtn {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
@media (min-width: 856px) {
  .bl_gridClinic .bl_gridClinic_body .ly_gridClinic_bodyBtn {
    display: block;
  }
}
.bl_gridClinic .ly_grid_bodyBtn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
/*———————————–
クリニック紹介
———————————–*/
.bl_horizontalGroup + * {
  margin-top: 115px;
}
@media (min-width: 856px) {
  .bl_horizontalGroup + * {
    margin-top: 135px;
  }
}
.bl_horizontalGroup .bl_horizontalGroup_ttl {
  margin-top: 70px;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_ttl {
    margin-top: 50px;
  }
}
.bl_horizontalGroup .bl_horizontalGroup_ttl h3 {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 2;
  font-weight: normal;
}
.bl_horizontalGroup .bl_horizontalGroup_body {
  margin-top: 45px;
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
  }
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_body .bl_horizontalGroup_img {
    width: 500px;
  }
}
.bl_horizontalGroup .bl_horizontalGroup_body .bl_horizontalGroup_detail {
  margin-top: 25px;
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_body .bl_horizontalGroup_detail {
    margin-top: 30px;
    margin-left: 70px;
    width: 330px;
  }
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_body.bl_horizontalGroup_body__reverce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 856px) {
  .bl_horizontalGroup .bl_horizontalGroup_body.bl_horizontalGroup_body__reverce .bl_horizontalGroup_detail {
    margin-left: 0;
    margin-right: 70px;
  }
}
/*———————————–
クララが選ばれる理由
———————————–*/
.ly_gridBenefit {
  margin-top: 80px;
}
@media (min-width: 856px) {
  .ly_gridBenefit {
    margin-top: 60px;
  }
}
.bl_gridBenefit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: (auto)[3];
  grid-template-rows: repeat(3, auto);
}
.bl_gridBenefit > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.bl_gridBenefit > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.bl_gridBenefit > *:nth-child(3) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.bl_gridBenefit + * {
  margin-top: 75px;
}
@media (min-width: 856px) {
  .bl_gridBenefit {
    -ms-grid-columns: auto 70px auto;
    grid-template-columns: repeat(2, auto);
    -ms-grid-rows: auto 0 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 70px;
  }
  .bl_gridBenefit > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .bl_gridBenefit > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .bl_gridBenefit > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .bl_gridBenefit > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
.bl_gridBenefit .bl_gridBenefit_ttl {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 2;
  text-align: center;
  color: #9d8264;
  font-weight: normal;
}
@media (min-width: 856px) {
  .bl_gridBenefit .bl_gridBenefit_ttl {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    text-align: left;
    margin-top: 20px;
  }
}
.bl_gridBenefit .bl_gridBenefit_img {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
  margin-top: 30px;
}
@media (min-width: 856px) {
  .bl_gridBenefit .bl_gridBenefit_img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/3/2;
    margin-top: 0;
  }
}
.bl_gridBenefit .bl_gridBenefit_summary {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 3/1/4/2;
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (min-width: 856px) {
  .bl_gridBenefit .bl_gridBenefit_summary {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
  }
}
@media (min-width: 856px) {
  .bl_gridBenefit.bl_gridBenefit__reverse .bl_gridBenefit_ttl {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .bl_gridBenefit.bl_gridBenefit__reverse .bl_gridBenefit_img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
  }
  .bl_gridBenefit.bl_gridBenefit__reverse .bl_gridBenefit_summary {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
  }
}
.bl_gridBenefit.bl_gridBenefit__first {
  margin-top: 70px;
}
@media (min-width: 856px) {
  .bl_gridBenefit.bl_gridBenefit__first {
    margin-top: 90px;
  }
  .bl_gridBenefit.bl_gridBenefit__first + * {
    margin-top: 110px;
  }
}
.bl_gridBenefit.bl_gridBenefit__first .bl_gridBenefit_ttl {
  color: #000;
}
/*———————————–
施術メニュー
———————————–*/
.bl_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.bl_menu .bl_menu_img {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
.bl_menu img {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media (min-width: 856px) {
  .bl_menu:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.bl_menu .bl_menu_inner {
  padding-right: 35px;
  display: inline-block;
  text-align: left;
  background: rgba(240, 237, 232, 0.5);
  padding: 30px 22px;
  min-height: 200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner {
    padding: 30px 15px 50px 35px;
    min-height: 180px;
  }
}
.bl_menu .bl_menu_inner h3 {
  font-size: 19px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #9d8264;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner h3 {
    font-size: 22px;
  }
}
.bl_menu .bl_menu_inner h3 span {
  font-size: 14px;
  margin-left: 1em;
}
@media (min-width: 856px) {
  .bl_menu .bl_menu_inner h3 span {
    font-size: 15px;
  }
}
.bl_menu .bl_menu_inner p {
  font-size: 15px;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  margin-top: 22px;
  margin-right: 8%;
}
.icon_arrow {
  position: relative;
}
.icon_arrow::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrow.svg) no-repeat center center;
  width: 17px;
  height: 32px;
}
.ly_flexMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
}
@media (min-width: 856px) {
  .ly_flexMenu {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 35px;
    -webkit-column-gap: 2.99%;
    -moz-column-gap: 2.99%;
    column-gap: 2.99%;
  }
  .ly_flexMenu .bl_flexMenu_item, .ly_flexMenu .bl_flexMenu_item2, .ly_flexMenu .bl_flexMenu_item3, .ly_flexMenu .bl_flexMenu_item4 {
    width: calc(50% - 17.5px);
    max-width: 568px;
  }
  .ly_flexMenu .bl_flexMenu_item5, .ly_flexMenu .bl_flexMenu_item6, .ly_flexMenu .bl_flexMenu_item7 {
    width: 31.3%;
    max-width: 366px;
  }
}
/*———————————–
新着一覧
———————————–*/
.bl_listNews li {
  margin-left: 25px;
}
.bl_listNews li + * {
  margin-top: 60px;
}
.bl_listNews li a {
  letter-spacing: 0.06em;
  line-height: 2.5;
}
@media (min-width: 856px) {
  .bl_listNews li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 856px) {
  .bl_listNews li a .bl_listNews_day {
    width: 17.78%;
  }
}
@media (min-width: 856px) {
  .bl_listNews li a .bl_listNews_txt {
    width: 82.22%;
  }
}
.nav-links {
  margin-top: 40px;
}
.nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.nav-links li {
  width: 38px;
  height: 38px;
  border: 1px solid #ae9c7d;
}
.nav-links li + * {
  margin-left: 10px;
}
.nav-links li:has(> .dots), .nav-links li:has(> .prev), .nav-links li:has(> .next) {
  display: none;
}
.nav-links li a {
  color: #957C54;
  display: block;
}
/*———————————–
新着一覧 記事ページ
———————————–*/
.bl_newsTxt {
  margin-top: 50px;
}
.bl_newsTtl {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
}
.ly_gridPager {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -ms-grid-rows: (auto)[2];
  grid-template-rows: repeat(2, auto);
  margin-top: 70px;
}
.ly_gridPager > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.ly_gridPager > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.ly_gridPager > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.ly_gridPager > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media (min-width: 856px) {
  .ly_gridPager {
    -ms-grid-columns: (auto)[3];
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    margin-top: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .ly_gridPager > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .ly_gridPager > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .ly_gridPager > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
}
.bl_gridPager a {
  color: #957c54;
}
.bl_gridPager .icon_arrow {
  padding-right: 25px;
}
.bl_gridPager .icon_arrow::after {
  right: 0;
}
.bl_gridPager .icon_arrow_left {
  padding-left: 25px;
  position: relative;
}
.bl_gridPager .icon_arrow_left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/images/icon_arrow_left.svg) no-repeat center center;
  background-size: contain;
  width: 17px;
  height: 32px;
}
.bl_gridPager_item {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
@media (min-width: 856px) {
  .bl_gridPager_item {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
.bl_gridPager_item2 {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
  text-align: center;
  margin: 45px auto 0;
}
.bl_gridPager_item2 a {
  border: 1px solid #957c54;
  display: block;
  line-height: 1;
  padding: 27px 75px;
  max-width: 300px;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_gridPager_item2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    margin-top: 0;
  }
}
.bl_gridPager_item3 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
  text-align: right;
}
@media (min-width: 856px) {
  .bl_gridPager_item3 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
}
/*———————————–
医師紹介ページ
———————————–*/
.ly_parallelSummary {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_parallelSummary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 60px auto 0;
  }
}
@media (min-width: 856px) {
  .bl_parallelSummary_img {
    width: 50%;
  }
}
.bl_parallelSummary_img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 420px;
}
.bl_parallelSummary_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (min-width: 856px) {
  .bl_parallelSummary_detail {
    margin-top: 0;
    margin-left: 6.36%;
    width: 43.64%;
  }
}
.bl_doctorSummary_director {
  text-align: center;
}
@media (min-width: 856px) {
  .bl_doctorSummary_director {
    text-align: left;
  }
}
.bl_doctorSummary_name {
  font-size: 20px;
  line-height: 1;
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 856px) {
  .bl_doctorSummary_name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    text-align: left;
  }
}
.bl_doctorSummary_name p + * {
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #9D8264;
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 856px) {
  .bl_doctorSummary_name p + * {
    margin-top: 0;
    margin-left: 24px;
    text-align: left;
  }
}
.bg_doctorSummary_detail {
  background: #f8f7f5;
  padding: 26px 0 28px 33px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 28px;
  text-align: left;
  font-family: YuGothic, sans-serif;
  color: #242424;
  margin-top: 30px;
}
.bg_doctorSummary_detail dl + * {
  margin-top: 1em;
}
.ly_doctorMessage {
  margin-top: 60px;
}
@media (min-width: 856px) {
  .ly_doctorMessage {
    margin-top: 95px;
  }
}
.ly_doctorMessage p {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_doctorMessage p {
    margin-top: 30px;
  }
}
/*———————————–
よくある質問
———————————–*/
.bl_search {
  padding: 30px 32px 45px;
  background: #F7F7F7;
}
@media (min-width: 856px) {
  .bl_search {
    padding: 25px 0 45px;
  }
}
.bl_search_inner {
  max-width: 704px;
  margin: 0 auto;
}
.bl_search_inner h2 {
  text-align: center;
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
}
.bl_search_inner form {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 856px) {
  .bl_search_inner form {
    width: 704px;
  }
}
.bl_search_inner input {
  max-width: 295px;
  background: #fff;
}
@media (min-width: 856px) {
  .bl_search_inner input {
    width: 588px;
    max-width: 100%;
  }
}
.bl_search_inner button {
  min-width: 69px;
  background: #957c54;
  text-align: center;
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 40px;
  color: #fff;
}
@media (min-width: 856px) {
  .bl_search_inner button {
    min-width: 116px;
  }
}
.bl_category {
  margin-top: 35px;
}
.bl_category h2 {
  text-align: center;
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
}
.bl_category_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #C6C6C6;
  margin-top: 27px;
}
.bl_category_list li {
  width: 33.3333333333%;
}
.bl_category_list li + * {
  border-left: 1px solid #C6C6C6;
}
.bl_category_list li:nth-child(4) {
  border-left: none;
}
@media (min-width: 856px) {
  .bl_category_list li:nth-child(4) {
    border-left: 1px solid #C6C6C6;
  }
}
.bl_category_list li:nth-child(n+4) {
  border-top: 1px solid #C6C6C6;
}
@media (min-width: 856px) {
  .bl_category_list li:nth-child(n+4) {
    border-top: none;
    border-left: 1px solid #C6C6C6;
  }
}
@media (min-width: 856px) {
  .bl_category_list li {
    width: 16.6666666667%;
  }
  .bl_category_list li + * {
    border-left: 1px solid #C6C6C6;
  }
}
.bl_category_list li a {
  display: block;
  padding: 15px;
  font-size: 15px;
  line-height: 1.4;
}
@media (min-width: 856px) {
  .bl_category_list li a {
    padding: 24px;
    text-align: center;
  }
}
.bl_category_list li a:hover {
  background: #f0ede8;
}
.bl_category_list li .icon_triangle {
  position: relative;
  padding-left: 13px;
}
.bl_category_list li .icon_triangle::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  background: url(/images/icon_triangle.svg) no-repeat center center;
  background-size: contain;
}
@media (min-width: 856px) {
  .bl_category_list li .icon_triangle::before {
    left: -13px;
  }
}
.ly_listQanda {
  margin-top: 50px;
}
.bl_listQanda {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 28px;
}
.bl_listQanda li {
  margin-top: 50px;
}
.bl_listQanda .bl_listQanda_Q::before {
  content: "Q . ";
}
.bl_listQanda .bl_listQanda_A {
  color: #9d866b;
  margin-top: 12px;
}
@media (min-width: 856px) {
  .bl_listQanda .bl_listQanda_A {
    margin-top: 0;
  }
}
.bl_listQanda .bl_listQanda_A::before {
  content: "A . ";
}
/*———————————–
料金表
———————————–*/
/*アコーディオン全体*/
.js_accordion {
  margin: 0 auto;
  border: 1px solid #ccc;
}
@media (min-width: 856px) {
  .js_accordion {
    border: none;
  }
}
/*アコーディオンタイトル*/
.js_accordion_ttl {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 24px 19px;
  font-size: 16px;
  font-weight: normal;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1;
}
@media (min-width: 856px) {
  .js_accordion_ttl {
    display: none;
  }
}
/*アイコンの＋と×*/
.js_accordion_ttl::before, .js_accordion_ttl::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #957C54;
}
.js_accordion_ttl::before {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.js_accordion_ttl::after {
  top: 48%;
  right: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.js_accordion_ttl.close::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
/*アコーディオンで現れるエリア*/
.js_accordion_list {
  display: none;
}
@media (min-width: 856px) {
  .js_accordion_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 25px;
  }
}
.js_accordion_list li {
  border-top: 1px solid #C6C6C6;
}
@media (min-width: 856px) {
  .js_accordion_list li {
    width: 200px;
    border: 1px solid #C6C6C6;
  }
  .js_accordion_list li:hover {
    background: #f0ede8;
  }
}
.js_accordion_list li a {
  display: block;
  padding: 12.5px 24px 12.5px 24px;
  position: relative;
}
@media (min-width: 856px) {
  .js_accordion_list li a {
    padding: 19px 16px;
    text-align: center;
  }
}
.js_accordion_list li a span {
  padding: 12.5px 24px 12.5px 24px;
}
@media (min-width: 856px) {
  .js_accordion_list li a span {
    padding: 0;
  }
}
.js_accordion_list li a span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 24px;
  background: url(/images/icon_triangle.svg) no-repeat center center;
  background-size: contain;
}
@media (min-width: 856px) {
  .js_accordion_list li a span::before {
    left: 16px;
    width: 12px;
    height: 6px;
    background: url(/images/icon_triangle_under.svg) no-repeat center center;
  }
}
.bl_priceGroup {
  margin-top: 60px;
}
@media (min-width: 856px) {
  .bl_priceGroup {
    margin-top: 110px;
  }
}
.bl_price {
  margin-top: 55px;
}
@media (min-width: 856px) {
  .bl_price {
    margin-top: 70px;
  }
}
.bl_price + * {
  margin-top: 45px;
}
@media (min-width: 856px) {
  .bl_price + * {
    margin-top: 55px;
  }
}
.bl_priceTable {
  border-collapse: collapse;
}
.bl_priceTable th, .bl_priceTable td {
  border-collapse: collapse;
  border: 1px solid #D9D9D9;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 10px 3px;
  line-height: 1.4;
}
@media (min-width: 856px) {
  .bl_priceTable th, .bl_priceTable td {
    font-size: 16px;
    padding: 10px;
    line-height: 1.7;
  }
}
.bl_priceTable {
  margin-top: 20px;
}
@media (min-width: 856px) {
  .bl_priceTable {
    margin-top: 24px;
  }
}
.bl_priceTable th {
  background: #F8F7F5;
}
.bl_priceTable th:first-child {
  width: 21.98%;
  line-height: 1.2;
}
.bl_priceTable th:nth-child(2) {
  width: 39.56%;
}
.bl_priceTable th:nth-child(3) {
  width: 38.46%;
}
.bl_priceTable td:first-child {
  text-align: center;
  line-height: 1.2;
}
.bl_priceTable td:nth-child(2) {
  text-align: right;
  color: #9d8264;
}
.bl_priceTable td:nth-child(3) {
  text-align: right;
  color: #9d8264;
}
.bl_priceTable td:nth-child(4) {
  text-align: right;
  color: #9d8264;
}
.bl_priceTable td span {
  font-size: 11px;
}
.bl_priceTable.bl_priceTable__col2 th:first-child {
  width: 50%;
}
.bl_priceTable.bl_priceTable__col2 th:nth-child(2) {
  width: 50%;
}
.bl_priceTable.bl_priceTable__col4 th:first-child {
  width: 5%;
}
.bl_priceTable.bl_priceTable__col4 th:nth-child(2) {
  width: 31.6666666667%;
}
.bl_priceTable.bl_priceTable__col4 th:nth-child(3) {
  width: 31.6666666667%;
}
.bl_priceTable.bl_priceTable__col4 th:nth-child(4) {
  width: 31.6666666667%;
}
.bl_priceTable.bl_priceTable__col4-2 {
  margin-top: 0 !important;
}
.bl_priceTable.bl_priceTable__col4-2 th:first-child {
  width: 16%;
  line-height: 1.4 !important;
}
.bl_priceTable.bl_priceTable__col4-2 th:nth-child(2) {
  width: 30%;
}
.bl_priceTable.bl_priceTable__col4-2 th:nth-child(3) {
  width: 27%;
}
.bl_priceTable.bl_priceTable__col4-2 th:nth-child(4) {
  width: 27%;
}
.bl_priceTable_supplement {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #848484;
  margin-top: 22px;
}
.ly_btnPricetable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ly_btnPricetable a {
  font-size: 16px;
}
.ly_btnPricetable .el_btn {
  width: 420px;
  max-width: 100%;
  padding: 25px;
  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;
  line-height: 1.75;
}
.sp {
  display: block;
}
@media (min-width: 856px) {
  .sp {
    display: none;
  }
}
.price_machine {
  display: block;
  color: #B98373;
  font-size: 13px;
  line-height: 1.5;
  padding: 0.2rem 0 0 0;
}
.bl_priceTable td {
  vertical-align: middle;
}
.bl_priceTable td strong {
  font-size: 16px !important;
  font-weight: 400;
}
.bl_priceTable td span {
  display: inline-block;
}
@media (min-width: 856px) {
  .bl_priceTable td strong {
    font-size: 18px !important;
    padding: 0 0.2rem 0.5rem 0.2rem;
  }
}
.price_cam_td {
  line-height: 1.6;
}
.price_cam_txt {
  display: inline-block;
  background: #B98373;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  padding: 0.2rem 0.6rem;
  color: #fff;
}
@media (min-width: 856px) {
  .price_cam_txt {
    font-size: 14px;
    padding: 0.4rem 1rem;
  }
}
.price_cam_attention {
  font-size: 13px !important;
  padding: 0.5rem 0 0.5rem 0;
  line-height: 1.6;
  font-family: YuGothic, yu-gothic-pr6n, sans-serif;
}
.price_cam_attention b {
  font-size: 110%;
  font-weight: 600;
}
.price_cam_cancel {
  text-decoration: line-through;
  display: inline-block;
  font-size: 15px !important;
}
@media (min-width: 856px) {
  .price_cam_cancel {
    font-size: 16px !important;
  }
}
.price_cam_comment {
  display: inline-block;
  line-height: 1;
  font-size: 13px !important;
  color: #242424;
  font-family: YuGothic, yu-gothic-pr6n, sans-serif;
}
.price_price {
  color: #B98373;
  display: inline-block;
  padding: 0rem 0 0rem 0;
  line-height: 1.5;
  font-size: 16px !important;
}
.price_price strong {
  font-size: 120% !important;
  font-weight: 400;
}
@media (min-width: 856px) {
  .price_price strong {
    font-size: 120% !important;
    padding: 0 0.2rem 0.5rem 0.2rem;
  }
}
.colorRed {
  color: #B98373;
}
.colorBlue {
  color: #188EC3;
}
.mprice_cam_txt {
  display: inline-block;
  background: #3d475f;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  padding: 0.2rem 0.6rem;
  color: #fff;
}
@media (min-width: 856px) {
  .mprice_cam_txt {
    font-size: 14px;
    padding: 0.4rem 1rem;
  }
}
.mprice_machine {
  display: block;
  color: #3d475f;
  font-size: 13px;
  line-height: 1.5;
  padding: 0.2rem 0 0 0;
}
.mprice_price {
  color: #188EC3;
  display: inline-block;
  padding: 0rem 0 0rem 0;
  line-height: 1.5;
}
.width10 {
  width: 10% !important;
}
@media (min-width: 856px) {
  .width10 {
    width: 10% !important;
  }
}
.width20 {
  width: 30% !important;
}
@media (min-width: 856px) {
  .width20 {
    width: 20% !important;
  }
}
.width30 {
  width: 30% !important;
}
@media (min-width: 856px) {
  .width30 {
    width: 50% !important;
  }
}
.luminza_num {
  text-align: center !important;
  color: #000 !important;
}
.textR {
  text-align: right !important;
}
/*———————————–
症例写真
———————————–*/
.ly_cardPhoto {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_cardPhoto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px -20px -20px;
  }
}
@media (min-width: 856px) {
  .ly_cardPhoto > li.bl_card1of3 {
    width: 33.3333333333%;
    padding: 20px;
  }
}
.bl_cardPhoto_body {
  padding: 20px;
  font-family: YuGothic, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 30px;
  border: 1px solid #D9D9D9;
}
.bl_cardPhoto_label, .bl_cardArticle_label, .bl_cardBlog_label {
  display: inline-block;
  padding: 10px 20px;
  background: #f5f2ea;
  font-family: DNPShueiMinPr6, serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  color: #957c54;
}
.bl_cardBlog_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bl_cardPhoto_txt, .bl_cardPhoto_tag, .bl_cardArticle_txt, .bl_cardBlog_txt {
  margin-top: 10px;
}
@media (min-width: 856px) {
  .bl_cardPhoto_txt, .bl_cardPhoto_tag, .bl_cardArticle_txt, .bl_cardBlog_txt {
    margin-top: 15px;
  }
}
.bl_cardPhoto_tag, .bl_cardArticle_tag, .bl_cardBlog_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_cardPhoto_tag li, .bl_cardArticle_tag li, .bl_cardBlog_tag li {
  color: #957c54;
}
.bl_cardPhoto_tag li + *, .bl_cardArticle_tag li + *, .bl_cardBlog_tag li + * {
  margin-left: 5px;
}
.bl_cardPhoto_tag li::before, .bl_cardArticle_tag li::before, .bl_cardBlog_tag li::before {
  content: "#";
  color: #957c54;
}
.bl_cardPhoto_tag li a, .bl_cardArticle_tag li a, .bl_cardBlog_tag li a {
  color: #957c54;
}
.bl_cardBlog_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  margin-top: 20px;
}
.bl_cardBlog_sns li {
  width: 30px;
  height: 30px;
  border-radius: 100vh;
}
.bl_cardBlog_sns li + * {
  margin-left: 8px;
}
.bl_cardPhoto_btn {
  margin-top: 25px;
}
.bl_cardPhoto_btn .el_btn {
  max-width: 100%;
}
@media (min-width: 856px) {
  .bl_cardArticle_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.bl_cardArticle_head .bl_cardArticle_label {
  padding: 10px 14px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 22px;
  display: inline-block;
}
.bl_cardArticle_head .bl_cardArticle_label br {
  display: none;
}
@media (min-width: 856px) {
  .bl_cardArticle_head .bl_cardArticle_label {
    padding: 14px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.bl_cardArticle_head .bl_cardArticle_txt {
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
}
@media (min-width: 856px) {
  .bl_cardArticle_head .bl_cardArticle_txt {
    margin-left: 30px;
    margin-top: 0;
  }
}
.bl_cardArticle_body {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .bl_cardArticle_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 856px) {
  .bl_cardArticle_body .bl_cardArticle_img {
    width: 50%;
  }
}
.bl_cardArticle_body .bl_cardArticle_detail {
  margin-top: 35px;
}
@media (min-width: 856px) {
  .bl_cardArticle_body .bl_cardArticle_detail {
    margin-top: 0;
    width: 45.91%;
    margin-left: 4.09%;
  }
}
.ly_cardArticle_summary {
  margin-top: 35px;
}
.bl_cardArticle_summary {
  padding: 34px 20px;
  background: #f8f7f5;
  font-family: YuGothic, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 28px;
}
@media (min-width: 856px) {
  .bl_cardArticle_summary {
    padding: 30px 24px;
  }
}
.bl_cardArticle_summary dl + * {
  margin-top: 1em;
}
.bl_cardArticle_alert {
  margin-top: 2em;
}
.ly_cardArticle_btn {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 856px) {
  .ly_cardArticle_btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 50px;
  }
}
.ly_cardArticle_btn .bl_cardArticle_btn + * {
  margin-top: 25px;
}
@media (min-width: 856px) {
  .ly_cardArticle_btn .bl_cardArticle_btn + * {
    margin-top: 0;
    margin-left: 50px;
  }
}
.ly_cardArticle_btn .bl_cardArticle_btn .el_btn {
  width: 265px;
  line-height: 30px;
  padding: 14px 20px;
}
@media (min-width: 856px) {
  .ly_cardArticle_btn .bl_cardArticle_btn .el_btn {
    width: 400px;
  }
}
@media (min-width: 856px) {
  .ly_cardArticle_btn .bl_cardArticle_btn .el_btn__white {
    max-width: 100%;
  }
}
.ly_cardCategory {
  margin-top: 45px;
}
@media (min-width: 856px) {
  .ly_cardCategory {
    margin-top: 100px;
  }
}
.bl_cardCategory_ttl {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: center;
}
.ly_cardCategory_accordion {
  margin-top: 30px;
}
.bg_blog {
  background: #faf8f6;
}
.ly_blog {
  padding-top: 60px;
}
/*———————————–
美容コラム
———————————–*/
.ly_blogBody {
  margin-top: 70px;
}
@media (min-width: 856px) {
  .ly_blogBody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 856px) {
  .ly_blogBody .ly_blogBody_article {
    width: 68.18%;
  }
}
@media (min-width: 856px) {
  .ly_blogBody .ly_blogBody_side {
    width: 27.73%;
    margin-left: 4.09%;
    max-width: 305px;
  }
}
.ly_blogBody.ly_blogBody__lower {
  padding-top: 0;
  margin-top: 0;
}
@media (min-width: 856px) {
  .ly_blogBody.ly_blogBody__lower {
    padding-bottom: 110px;
  }
}
@media (min-width: 856px) {
  .ly_cardWrap {
    width: 1100px;
    margin: 0 auto;
  }
}
@media (min-width: 856px) {
  .ly_cardWrap.ly_cardWrap__lower {
    width: auto;
  }
}
.bl_cardBlog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  /*———————————–
  美容コラム 下層の記事ページ
  ———————————–*/
}
@media (min-width: 856px) {
  .bl_cardBlog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.bl_cardBlog .bl_cardBlog_content {
  background: #fff;
  padding: 20px 32px 32px;
}
@media (min-width: 856px) {
  .bl_cardBlog .bl_cardBlog_content {
    width: 50%;
    padding: 40px 40px 30px 50px;
  }
}
@media (min-width: 856px) {
  .bl_cardBlog .bl_cardBlog_img {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bl_cardBlog .bl_cardBlog_img figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bl_cardBlog .bl_cardBlog_img img {
  -o-object-fit: cover;
  object-fit: cover;
}
.bl_cardBlog.bl_cardBlog__lower {
  display: block;
}
.bl_cardBlog.bl_cardBlog__lower .bl_cardBlog_content, .bl_cardBlog.bl_cardBlog__lower .bl_cardBlog_img {
  width: auto;
}
.bl_cardBlog.bl_cardBlog__lower .bl_cardBlog_content {
  padding: 20px;
}
.bl_cardBlog_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.bl_cardBlog_txt {
  font-family: DNPShueiMinPr6, serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 35px;
  color: #050505;
  font-weight: normal;
}
@media (min-width: 856px) {
  .bl_cardBlog_txt {
    font-size: 22px;
    line-height: 44px;
  }
}
.bl_cardBlog_btn {
  margin-top: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 856px) {
  .bl_cardBlog_btn {
    display: block;
  }
}
.bl_cardBlog_btn .el_btn {
  width: 200px;
  max-height: 100%;
  padding: 17px;
}
.ly_cardBlog {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_cardBlog {
    margin: -20px;
  }
}
.ly_cardBlog > .bl_card1of2 + * {
  margin-top: 20px;
}
@media (min-width: 856px) {
  .ly_cardBlog > .bl_card1of2 {
    width: 50%;
    padding: 20px;
    margin-top: 0;
  }
}
@media (min-width: 856px) {
  .bl_card1of2_inner {
    background: #fff;
  }
}
.bl_card1of2_inner .bl_cardBlog_content {
  padding: 20px;
  background: #fff;
}
.bl_card1of2_inner .bl_cardBlog_txt {
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 35px;
}
.ly_blogBody_side {
  margin-top: 40px;
  padding-bottom: 60px;
}
@media (min-width: 856px) {
  .ly_blogBody_side {
    margin-top: 0;
  }
}
.ly_blogBody_side .bl_aside {
  background: #fff;
}
.ly_blogBody_side .bl_aside + * {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .ly_blogBody_side .bl_aside + * {
    margin-top: 25px;
  }
}
.ly_blogBody_side .bl_aside h2 {
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 35px;
  padding: 10px 20px;
}
.ly_blogBody_side .bl_aside_category li, .ly_blogBody_side .bl_aside_article li {
  border-bottom: 1px dotted rgba(167, 149, 120, 0.29);
}
.ly_blogBody_side .bl_aside_category li:first-child, .ly_blogBody_side .bl_aside_article li:first-child {
  border-top: 1px solid rgba(167, 149, 120, 0.29);
}
.ly_blogBody_side .bl_aside_category li a, .ly_blogBody_side .bl_aside_article li a {
  color: #957C54;
  padding: 10px 20px;
  display: block;
}
.ly_blogBody_side .bl_aside_category li a:hover, .ly_blogBody_side .bl_aside_article li a:hover {
  background: #f0ede8;
}
.ly_blogBody_side .bl_aside_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 55px 35px;
  margin: -5px -10px;
}
@media (min-width: 856px) {
  .ly_blogBody_side .bl_aside_tag {
    padding: 0 20px 35px;
  }
}
.ly_blogBody_side .bl_aside_tag li {
  padding: 5px 10px;
}
.ly_blogBody_side .bl_aside_tag li a {
  border-radius: 7px;
  border: 1px solid #D9D9D9;
  display: inline-block;
  padding: 0 17px;
  color: #957c54;
}
@media (min-width: 856px) {
  .ly_blogBody_side .bl_aside_tag li a {
    font-size: 15px;
    padding: 0 15px;
  }
}
.ly_blogBody_side .bl_aside_article li:last-child {
  border: none;
}
.ly_blogBody_side .bl_aside_article li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 20px;
}
.ly_blogBody_side .bl_aside_article .bl_aside_articleImg {
  width: 93px;
}
.ly_blogBody_side .bl_aside_article .bl_aside_articleTxt {
  width: 153px;
  margin-left: 15px;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 30px;
}
.ly_btnAside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 856px) {
  .ly_btnAside {
    display: none;
  }
}
.bl_outline {
  border: 1px solid #D9D9D9;
  background: #F7F7F7;
  padding: 20px;
}
@media (min-width: 856px) {
  .bl_outline {
    padding: 20px 50px 55px;
  }
}
.bl_outline h2 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.bl_outline ol {
  margin-top: 8px;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 28px;
  text-align: left;
  color: #957c54;
  counter-reset: listnum;
  list-style: none;
}
@media (min-width: 856px) {
  .bl_outline ol {
    margin-top: 20px;
    font-size: 16px;
    line-height: 38px;
  }
}
.bl_outline ol li::before {
  counter-increment: listnum;
  content: counter(listnum) ".";
}
.bl_outline ol li a {
  color: #957c54;
}
.ly_blogBody_wig {
  padding: 40px 20px 24px;
  background: #fff;
}
.bl_blogBody_wig {
  padding: 20px 0 0;
}
.bl_blogBody_wig h2 {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: #9d8264;
  font-size: 19px;
  line-height: 36px;
  margin-top: 24px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig h2 {
    font-size: 20px;
    line-height: 40px;
    margin-top: 40px;
  }
}
.bl_blogBody_wig h3 {
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 34px;
  border-left: 1px solid #9D8264;
  padding-left: 23px;
  margin-top: 24px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig h3 {
    margin-top: 60px;
    line-height: 40px;
  }
}
.bl_blogBody_wig h4, .bl_blogBody_wig h5, .bl_blogBody_wig h6 {
  margin-top: 24px;
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 17px;
  letter-spacing: 0.06em;
  line-height: 36px;
  margin-top: 50px;
  margin-bottom: 0;
}
.bl_blogBody_wig p {
  margin-top: 1em;
}
.bl_blogBody_wig a {
  text-decoration: underline;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 36px;
  color: #957c54;
}
.bl_blogBody_wig .bl_blogBody_summarize {
  background: rgba(183, 153, 117, 0.06);
  padding: 20px;
  font-size: 15px;
  margin-top: 55px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig .bl_blogBody_summarize {
    padding: 30px;
    font-family: YuGothic, sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 32px;
  }
}
.bl_blogBody_wig .bl_blogBody_summarize p {
  margin-top: 17px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig .bl_blogBody_summarize p {
    margin-top: 34px;
  }
}
.bl_blogBody_wig .icon_summarize {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 300px;
  margin: 0 auto;
}
@media (min-width: 856px) {
  .bl_blogBody_wig .icon_summarize {
    width: auto;
  }
}
.bl_blogBody_wig .icon_summarize::after, .bl_blogBody_wig .icon_summarize::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}
.bl_blogBody_wig .icon_summarize::after {
  content: "";
  right: 0;
  background: url(/images/icon_summarize_right.svg);
  width: 90px;
  height: 6px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig .icon_summarize::after {
    background: url(/images/icon_summarizePC.svg);
    width: 263px;
  }
}
.bl_blogBody_wig .icon_summarize::before {
  content: "";
  left: 0;
  background: url(/images/icon_summarize.svg);
  width: 90px;
  height: 6px;
}
@media (min-width: 856px) {
  .bl_blogBody_wig .icon_summarize::before {
    background: url(/images/icon_summarizePC_right.svg);
    width: 263px;
  }
}
.ly_related {
  margin-top: 60px;
}
@media (min-width: 856px) {
  .ly_related {
    margin-top: 65px;
  }
}
.ly_related h2 {
  text-align: center;
  font-family: DNPShueiMinPr6, serif;
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 30px;
}
@media (min-width: 856px) {
  .ly_related h2 {
    font-size: 20px;
    line-height: 36px;
  }
}
.ly_related .ly_cardBlog {
  margin-top: 39px;
}
.wp-block-image:has(> .alignright) {
  float: left;
  margin-left: 20px;
  margin-right: 30px;
}
.wp-block-image:has(> .alignright) + p {
  margin-top: 0;
}
.wp-block-image:has(> .alignleft) {
  float: right;
  margin-left: 20px;
  margin-right: 30px;
}
.wp-block-image:has(> .alignleft) + p {
  margin-top: 0;
}
.ly_pager {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ly_pager .bl_itemLeft {
  width: 50%;
  margin-left: 0;
  margin-right: auto;
}
@media (min-width: 856px) {
  .ly_pager .bl_itemLeft {
    width: auto;
  }
}
.ly_pager .bl_itemLeft a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #957c54;
}
.ly_pager .bl_itemLeft a:hover {
  background: #f0ede8;
}
.ly_pager .bl_itemLeft img {
  margin-right: 13px;
}
.ly_pager .bl_itemCenter {
  display: none;
}
@media (min-width: 856px) {
  .ly_pager .bl_itemCenter {
    display: block;
    border: #957c54 1px solid;
    text-align: center;
  }
  .ly_pager .bl_itemCenter a {
    display: inline-block;
    width: 300px;
    padding: 11px;
    font-family: DNPShueiMinPr6, serif;
    font-weight: normal;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #957c54;
  }
  .ly_pager .bl_itemCenter a:hover {
    background: #f0ede8;
  }
}
.ly_pager .bl_itemRight {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 856px) {
  .ly_pager .bl_itemRight {
    width: auto;
  }
}
.ly_pager .bl_itemRight a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  color: #957c54;
}
.ly_pager .bl_itemRight a:hover {
  background: #f0ede8;
}
.ly_pager .bl_itemRight img {
  margin-left: 13px;
}
.bl_priceTable_list {
  text-align: left;
  font-size: 12px;
  font-family: YuGothic, sans-serif;
  font-weight: 500;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-top: 14px;
}
@media (min-width: 856px) {
  .bl_priceTable_list {
    font-size: 14px;
    padding: 20px 28px;
    margin-top: 0;
  }
}
.ly_cardPicospot {
  margin-top: 20px;
}
@media (min-width: 856px) {
  .ly_cardPicospot {
    margin: -20px -40px;
  }
}
.ly_cardPicospot li {
  padding: 30px 0 0 0;
}
@media (min-width: 856px) {
  .ly_cardPicospot li {
    padding: 60px 40px 0;
  }
}
.bl_cardPicospot_body {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 28px;
  font-family: YuGothic, sans-serif;
  color: #6e5b4b;
  margin-top: 20px;
}
@media (min-width: 856px) {
  .bl_cardPicospot_body {
    margin-left: 10px;
  }
}
.bl_cardPicospot_body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ly_picospotFace, .ly_silkyphoto {
  margin-top: 30px;
}
.ly_picospotFace .ly_picospotFace_image, .ly_picospotFace .ly_silkyphoto_image, .ly_silkyphoto .ly_picospotFace_image, .ly_silkyphoto .ly_silkyphoto_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ly_picospotFace .ly_picospotFace_image .un_picospotFace_mv, .ly_picospotFace .ly_picospotFace_image .un_silkyphoto_mv, .ly_picospotFace .ly_silkyphoto_image .un_picospotFace_mv, .ly_picospotFace .ly_silkyphoto_image .un_silkyphoto_mv, .ly_silkyphoto .ly_picospotFace_image .un_picospotFace_mv, .ly_silkyphoto .ly_picospotFace_image .un_silkyphoto_mv, .ly_silkyphoto .ly_silkyphoto_image .un_picospotFace_mv, .ly_silkyphoto .ly_silkyphoto_image .un_silkyphoto_mv {
  width: 100%;
}
@media (min-width: 856px) {
  .ly_picospotFace .ly_picospotFace_image .un_picospotFace_mv, .ly_picospotFace .ly_picospotFace_image .un_silkyphoto_mv, .ly_picospotFace .ly_silkyphoto_image .un_picospotFace_mv, .ly_picospotFace .ly_silkyphoto_image .un_silkyphoto_mv, .ly_silkyphoto .ly_picospotFace_image .un_picospotFace_mv, .ly_silkyphoto .ly_picospotFace_image .un_silkyphoto_mv, .ly_silkyphoto .ly_silkyphoto_image .un_picospotFace_mv, .ly_silkyphoto .ly_silkyphoto_image .un_silkyphoto_mv {
    max-width: 564px;
  }
}
.ly_picospotFace .bl_picospotFace_summary, .ly_picospotFace .bl_silkyphoto_summary, .ly_silkyphoto .bl_picospotFace_summary, .ly_silkyphoto .bl_silkyphoto_summary {
  font-family: YuGothic, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 28px;
}
.ly_picospotFace .bl_picospotFace_summary dl, .ly_picospotFace .bl_silkyphoto_summary dl, .ly_silkyphoto .bl_picospotFace_summary dl, .ly_silkyphoto .bl_silkyphoto_summary dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ly_menuTable {
  margin-top: 90px;
}
.bl_menuTable {
  margin-top: 35px;
  border-collapse: collapse;
}
@media (min-width: 856px) {
  .bl_menuTable {
    margin-top: 40px;
  }
}
.bl_menuTable tr {
  display: block;
}
@media (min-width: 856px) {
  .bl_menuTable tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.bl_menuTable tr + * {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .bl_menuTable tr {
    border-top: 1px dotted #9f8568;
  }
  .bl_menuTable tr:last-child {
    border-bottom: 1px dotted #9f8568;
  }
  .bl_menuTable tr + * {
    margin-top: 0;
  }
}
.bl_menuTable th, .bl_menuTable td {
  display: block;
  width: 100%;
  border: 1px solid #D9D9D9;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media (min-width: 856px) {
  .bl_menuTable th, .bl_menuTable td {
    font-size: 16px;
    padding: 17px 30px;
  }
}
.bl_menuTable th {
  color: #9d8264;
  border: none;
  padding-top: 12px;
  position: relative;
  font-size: 17px;
  text-align: center;
}
@media (min-width: 856px) {
  .bl_menuTable th {
    text-align: left;
  }
}
.bl_menuTable th::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-top: 1px solid #B79975;
  width: 100px;
  height: 1px;
}
@media (min-width: 856px) {
  .bl_menuTable th::before {
    content: none;
  }
}
@media (min-width: 856px) {
  .bl_menuTable th {
    width: 31.56%;
    background: #f8f7f5;
  }
}
.bl_menuTable td {
  margin-top: 20px;
  border: none;
}
@media (min-width: 856px) {
  .bl_menuTable td {
    margin-top: 0;
    width: 68.44%;
  }
}
.ly_menuFrow {
  margin-top: 90px;
}
@media (min-width: 856px) {
  .ly_menuFrow_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px -30px 0;
  }
}
.ly_priceTable__menu {
  margin-top: 30px;
}
.ly_menuPrice {
  margin-top: 90px;
}
@media (min-width: 856px) {
  .ly_menuPrice {
    margin-top: 110px;
  }
}
@media (min-width: 856px) {
  .ly_menuPrice .ly_menuPrice_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px -30px 0;
  }
}
.bl_picospotFrow_inner {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .bl_picospotFrow_inner {
    margin-top: 0;
    width: 50%;
    padding: 0 30px;
  }
}
.bl_picospotFrow_inner + * {
  margin-top: 50px;
}
@media (min-width: 856px) {
  .bl_picospotFrow_inner + * {
    margin-top: 0;
  }
}
@media (min-width: 856px) {
  .bl_picospotFrow_inner.bl_picospotFrow_inner__12f12 {
    width: 100%;
  }
}
.ly_stainStep {
  margin-top: 20px;
}
.bl_stainStep {
  background: rgba(188, 169, 140, 0.17);
  padding: 20px;
  position: relative;
}
.bl_stainStep + * {
  margin-top: 50px;
}
@media (min-width: 856px) {
  .bl_stainStep + * {
    margin-top: 40px;
  }
}
.bl_stainStep::after {
  content: "";
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: #F4F2EC transparent transparent transparent;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -25px;
}
.bl_stainStep:last-child::after {
  content: none;
}
@media (min-width: 856px) {
  .bl_stainStep.bl_stainStep__parallel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bl_stainStep.bl_stainStep__parallel .bl_stainStep_head {
    width: 50%;
  }
  .bl_stainStep.bl_stainStep__parallel .bl_stainStep_body {
    width: 50%;
    margin-top: 0;
    padding: 10px 20px;
  }
  .bl_stainStep.bl_stainStep__parallel .bl_stainStep_body::before {
    height: 1px;
    width: 33px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -23px;
  }
}
.bl_stainStep_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: Miller Display, serif;
  font-weight: normal;
  letter-spacing: 0.06em;
}
.bl_stainStep_head h4 {
  font-style: italic;
  font-size: 18px;
  line-height: 36px;
}
.bl_stainStep_head h4 span {
  margin-left: 0.3em;
  font-size: 28px;
  line-height: 36px;
}
.bl_stainStep_head p {
  font-family: DNPShueiMinPr6, serif;
  font-size: 17px;
  line-height: 36px;
  margin-left: 30px;
}
@media (min-width: 856px) {
  .bl_stainStep_head p {
    margin-left: 45px;
  }
}
.bl_stainStep_body {
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  font-family: YuGothic, sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 28px;
  color: #b79975;
  position: relative;
}
.bl_stainStep_body::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 40px;
  width: 1px;
  background: #B79975;
  top: -20px;
  left: 12.5px;
}
.ly_menuDetail {
  margin-top: 55px;
}
@media (min-width: 856px) {
  .ly_menuDetail {
    margin-top: 80px;
  }
}
.bl_menuDetail {
  padding: 30px;
  background: #f8f7f5;
  font-size: 15px;
}
@media (min-width: 856px) {
  .bl_menuDetail {
    padding: 30px 40px 80px;
  }
}
.bl_menuDetail .bl_menuDetail_paragraph, .bl_menuDetail dl, .bl_menuDetail p {
  margin-top: 1em;
}
.ly_picotoning_sub {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_picotoning_sub {
    margin-top: 65px;
  }
}
@media (min-width: 856px) {
  .ly_picotoning_image {
    max-width: 510px;
    margin: 0 auto;
  }
}
.bl_picotoning_summary, .bl_silkyphoto_summary {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .bl_picotoning_summary, .bl_silkyphoto_summary {
    max-width: 600px;
    margin: 40px auto 0;
  }
}
.bl_picotoning_summary p + *, .bl_silkyphoto_summary p + * {
  margin-top: 1em;
}
.bl_picotoning_summary2nd {
  margin-top: 45px;
}
@media (min-width: 856px) {
  .bl_picotoning_summary2nd {
    margin-top: 60px;
  }
}
.ly_silkyphoto_sub {
  margin-top: 20px;
}
@media (min-width: 856px) {
  .ly_silkyphoto_sub {
    margin-top: 35px;
  }
}
@media (min-width: 856px) {
  .ly_silkyphoto_sub .ly_silkyphoto_image {
    max-width: 510px;
    margin: 0 auto;
  }
}
@media (min-width: 856px) {
  .ly_silkyphoto .ly_silkyphoto_illustrat {
    max-width: 340px;
    margin: 0 auto;
  }
}
.bl_silkyphoto_summary {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .bl_silkyphoto_summary {
    max-width: 580px;
    margin: 30px auto 0;
  }
}
.ly_bnlsulutimate_sub, .ly_hydragentle_sub {
  margin-top: 40px;
}
@media (min-width: 856px) {
  .ly_bnlsulutimate_sub, .ly_hydragentle_sub {
    margin-top: 70px;
  }
}
.ly_bnlsulutimateMovie {
  margin-top: 60px;
}
@media (min-width: 856px) {
  .ly_bnlsulutimateMovie {
    margin-top: 95px;
  }
}
.bl_iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.bl_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bl_hydragentle_summary p + * {
  margin-top: 1em;
}
.ly_hydragentle_btn {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ly_hydragentle_btn .el_btn {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 856px) {
  .ly_hydragentle_btn .el_btn {
    width: 540px;
  }
}
.ly_hydragentle_btn.ly_hydragentle_btn__2nd {
  margin-top: 30px;
}
#js_transition {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  z-index: 9999999;
}
.aftercare .about {
  padding: 20px 0;
}
.aftercare .about ul {
  margin: 30px 0;
}
.aftercare .about ul li {
  margin: 20px 0;
}
.aftercare .about ul li p strong {
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 856px) {
  .aftercare .about ul li p strong {
    text-align: left;
  }
}
.aftercare .ac {
  color: #B09D7F;
  font-size: 1.4rem;
  padding: 0;
  font-weight: 500;
  text-align: center;
  display: block;
  margin: 10px auto;
}
.aftercare .bosyummt {
  margin: 0px auto 20px auto;
  width: 100%;
  border: 3px solid #9A6A30;
  background: #F9F6F3;
  color: #966427;
  font-size: 16px;
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 20px;
}
@media (min-width: 856px) {
  .aftercare .bosyummt {
    margin: 20px auto 50px auto;
    width: 70%;
  }
}
.aftercare .bosyummt p {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.aftercare .bosyummt strong {
  font-size: 130%;
  padding: 0 0 10px 0;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin: 20px auto 0px auto;
  line-height: 1.7;
}
.aftercare .bl_price {
  margin: 0 !important;
}
@media (min-width: 856px) {
  .aftercare .bl_price {
    margin: 40px 0 40px 0 !important;
  }
}
.aftercare .bl_price .bl_priceTable th:first-child {
  width: 50%;
}
.aioseo-breadcrumb {
  font-size: 11px;
  padding: 1rem 0;
  font-family: YuGothic, sans-serif;
}
@media (min-width: 856px) {
  .aioseo-breadcrumb {
    font-size: 12px;
  }
}
.aioseo-breadcrumb a {
  color: #bca98c;
}
.hya_txt {
  margin: 20px auto;
}
/*add240728*/
.bl_priceTable_hya td {
  line-height: 1.8 !important;
}
.bl_priceTable_hya th:first-child {
  width: 35% !important;
}
.bl_priceTable_hya th:nth-child(2) {
  width: calc(65% / 3) !important;
}
.bl_priceTable_hya td:nth-child(2) {
  color: #000 !important;
  text-align: center;
}
.bl_priceTable_hya th:nth-child(3) {
  width: calc(65% / 3) !important;
}
.ly_menuPrice .youtube {
  width: 90%;
  margin: 20px auto 0 auto;
}
.ly_menuPrice .youtube video {
  width: 100%;
}
@media (min-width: 856px) {
  .ly_menuPrice .youtube {
    width: 40%;
  }
  .hya_txt {
    margin: 40px auto;
  }
}
.cost_magin1 {
  margin: 30px auto 50px auto;
}
.cost_maginTit {
  margin: 0px auto 0px auto;
}
.cost_maginMi {
  margin-top: 25px !important;
}
.bl_heading_borders {
  line-height: 1.8 !important;
}
@media (min-width: 856px) {
  .cost_magin1 {
    margin: 60px auto 100px auto;
  }
  .cost_maginTit {
    margin: 0px auto 0px auto;
  }
  .cost_maginMi {
    margin-top: 50px !important;
  }
}
#sunekos .bl_priceTable td.PricetextR {
  text-align: right !important;
  color: #9d8264 !important;
}
.form-file input {
  background: #fff;
  border: none;
  padding: 0;
  width: 100%;
}
.mwform-file-delete {
  display: none;
}
.ma-t60 {
  margin: 60px 0 0 0;
  text-align: center;
}
@media (min-width: 856px) {
  .ma-t60 {
    margin: 30px 0 0 0;
    text-align: center;
  }
}
.camp {
  width: 90%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
}
.camp img {
  width: 100%;
}
.camp p {
  width: 100%;
  display: block;
  margin: 10px 0 0 0;
}
@media (min-width: 856px) {
  .camp {
    width: 1000px;
    margin: 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .camp img {
    width: 500px;
  }
  .camp p {
    width: 480px;
    margin: 0;
  }
}
.heijitsuCamp {
  font-size: 105%;
  color: #9d8264;
  display: block;
  margin: 30px auto 10px auto;
  text-align: center;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
}
.heijitsuCamp::before {
  content: "|";
  position: absolute;
  top: 40%;
  left: 0;
  transform: rotate(-45deg);
  margin: 0;
}
.heijitsuCamp::after {
  content: "|";
  position: absolute;
  margin: 0;
  top: 40%;
  right: 0;
  transform: rotate(45deg);
}
@media (min-width: 856px) {
  .heijitsuCamp {
    font-size: 120%;
    margin: 60px auto 20px auto;
    display: block;
  }
  .heijitsuCamp::before {
    margin: 0 0 0 -30px;
    left: auto;
    top: 0;
  }
  .heijitsuCamp::after {
    margin: 0 0px 0 20px;
    right: auto;
    top: 0;
  }
}
.yasuPlanp {
  margin: 20px auto 30px auto;
  width: 90%;
  padding: 20px 30px;
  border: 1px solid #E0567B;
}
.pinn {
  display: flex;
  flex-direction: column-reverse;
}
.yasuPlanp img {
  width: 80%;
  margin: 0 auto 0px auto;
}
.yasuPlanp p {
  width: 100%;
  line-height: 1.8;
}
.yasuPlanp strong {
  font-size: 16px;
  font-weight: normal;
  padding: 0 0 0.5rem 0;
  display: block;
  text-align: center;
}
.yasuPlanp_mens {
  border: 1px solid #568BE0 !important;
}
.yasuPlanp_mensf {
  color: #568BE0 !important;
}
.strongm {
  font-weight: bold;
  color: #568BE0;
}
.strongw {
  font-weight: bold;
  color: #E0567B;
}
@media (min-width: 856px) {
  .yasuPlanp {
    width: 1000px;
    margin: 40px auto;
    padding: 20px 30px;
  }
  .pinn {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
  }
  .yasuPlanp img {
    width: 20%;
  }
  .yasuPlanp p {
    width: 60%;
  }
  .yasuPlanp strong {
    font-size: 20px;
  }
}
.addTit {
  text-align: center;
  margin: 20px auto 5px 0;
  font-size: 16px;
}
@media (min-width: 856px) {
  .addTit {
    margin: 40px auto 10px 0;
    font-size: 18px;
  }
}
.redcopy {
  color: #C46168;
  text-align: center;
  margin: 10px auto 5px auto;
  font-size: 16px;
  display: inline-block;
  font-weight: bold;
  font-family: YuGothic, sans-serif;
}
@media (min-width: 856px) {
  .redcopy {
    font-size: 18px;
  }
}
/*———————————–
クララについて
———————————–*/
.lyAbout {
  width: 100%;
}
.lyAbout .ly_grid {
  display: grid;
  align-items: center;
  overflow: hidden;
}
.lyAbout .ly_grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.lyAbout .ly_grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.lyAbout .ly_grid > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.lyAbout .ly_grid > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media (min-width: 856px) {
  .lyAbout .ly_grid {}
}
.lyAbout .bl_grid {
  grid-area: 1/1/2/3;
  margin-left: 3%;
  margin-right: 3%;
  padding-bottom: 0px;
}
@media (min-width: 856px) {
  .lyAbout .bl_grid {
    padding-bottom: 0;
    padding-top: 0px;
  }
}
@media (min-width: 856px) {
  .lyAbout .bl_grid {
    margin-left: min(11.72%, 75px);
    margin-right: min(11.72%, 75px);
    grid-area: 1/2/2/3;
  }
}
.lyAbout .bl_gridSide img, .lyAbout .bl_gridSide2 img {
  object-fit: cover;
  height: 300px;
}
@media (min-width: 856px) {
  .lyAbout .bl_gridSide img, .lyAbout .bl_gridSide2 img {
    height: 100%;
  }
}
.lyAbout .bl_gridSide {
  grid-area: 2/1/3/2;
  max-height: 300px;
}
@media (min-width: 856px) {
  .lyAbout .bl_gridSide {
    grid-area: 1/1/2/2;
    max-height: 100%;
  }
}
.lyAbout .bl_gridSide2 {
  grid-area: 2/2/3/3;
  max-height: 300px;
}
@media (min-width: 856px) {
  .lyAbout .bl_gridSide2 {
    grid-area: 1/3/2/4;
    max-height: 100%;
  }
}
.lyAbout .un_aboutTop {
  margin-top: 30px;
}
@media (min-width: 856px) {
  .lyAbout .un_aboutTop {
    margin-top: 60px;
  }
}
.tt-mv {
  height: 260px;
  img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
}
.pc {
  display: none;
}
.sp {
  display: block;
}
main p {
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.05rem;
}
main h2 {
  font-size: clamp(20px, 2.2vw, 22px);
  letter-spacing: 0.05rem;
}
.lyAbout p {
  line-height: 2.2;
  margin: 0 0 10px 0;
}
.footerliLink {
  display: flex;
  flex-direction: column;
}
.MainCopy {
  font-size: clamp(17px, 2.0vw, 19px);
  letter-spacing: 0.05rem;
  display: block;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  line-height: 1.8;
}
.bl_aboutGroup {
  margin-top: 25px;
}
.doctorW {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
  li {
    width: 100%;
    img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    p {
      font-size: clamp(16px, 1.8vw, 17px);
      font-weight: 500;
      margin: .5rem 0;
      text-align: left;
      small {
        font-size: 85%;
        display: block;
        padding: .5rem 0;
        line-height: 1.8;
        text-align: left;
      }
    }
  }
}
@media (min-width: 856px) {
  .doctorW {
    flex-direction: row;
    width: 100%;
    gap: 30px;
    li {
      width: 48%;
    }
    img {
      height: 300px;
    }
  }
  .clinic {
    justify-content: center;
    gap: 40px;
    li {
      width: 30%;
      p {
        font-size: clamp(15px, 1.7vw, 16px);
        small {
          font-size: 80%;
        }
      }
    }
  }
  .bl_aboutGroup {
    margin-top: 50px;
  }
  .footerliLink {
    flex-direction: row;
    gap: 20px;
  }
  .tt-mv {
    height: 550px;
    img {
      height: 550px;
    }
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}