@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  /* text-wrap: balance; */
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover])) {
  display: none !important;
}

:where([popover]) {
  border: none;
  background: none;
  inset: unset;
  color: inherit;
}

:where([popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* width: m.flexWidth(30px, 4); flexカラム幅指定 */
/* SP以外のTELリンク無効*/
@media screen and (min-width: 768px) {
  a[href^="tel:"]:not(.sideban-tel) {
    pointer-events: none;
  }
}
/*　全体のベース、レイアウト */
* {
  min-height: 0vw;
}

:root {
  color-scheme: light !important;
}

img {
  height: auto;
}

::marker {
  color: #7A5C43;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  color: #3C2F25;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: clamp(32px, 24.941px + 1.471vw, 40px);
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
}

pre {
  white-space: pre-line;
}

/*　アニメーション */
.effect-anime.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-anime {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}
.effect-anime.nofade {
  opacity: 1;
  transform: translate(0, 0);
}

.fade {
  transform: translate(0, 0);
}

.fade-t {
  transform: translate(0, -45px);
}

.fade-r {
  transform: translate(45px, 0);
}

.fade-l {
  transform: translate(-45px, 0);
}

.appear {
  animation: show 1s both;
}

.dh {
  animation-delay: 1s;
}

.d1h {
  animation-delay: 2.5s;
}

.d2h {
  animation-delay: 3s;
}

@keyframes show {
  0% {
    transform: translate(0, 0px);
    transition: all 1s;
    opacity: 0.01;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.list-anime > li {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.list-anime > li.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.list-anime a > li {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.list-anime a > li.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinBig img {
  opacity: 0;
  transform: scale(1.2);
  transition: 0.5s;
}

.effect-anime.effect-scroll .fadeinBig img {
  opacity: 1;
  transform: scale(1);
}

.slideBand {
  position: relative;
}
.slideBand:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand:before {
  transform: translateX(100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-r {
  position: relative;
}
.slideBand-r:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-r img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-r:before {
  transform: translateX(-100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-b {
  position: relative;
}
.slideBand-b:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-b img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-b:before {
  transform: translateY(-100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-t {
  position: relative;
}
.slideBand-t:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-t img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-t:before {
  transform: translateY(100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

/* blockquote */
blockquote {
  position: relative;
  padding: 20px 40px;
  background: #f5f5f5;
  margin: 0 0 20px;
  border-left: 0 solid #B8A48A;
  color: #3C2F25;
}

blockquote:before {
  content: "“";
  left: 10px;
  position: absolute;
  top: 22px;
  font-size: 50px;
  color: #ccc;
  line-height: 1rem;
}

blockquote cite {
  font-style: italic;
  display: block;
  font-size: 0.8rem;
  text-align: right;
}

/* table */
table {
  margin: 2rem auto;
  border: 1px solid #c4bbb0;
  border-collapse: collapse;
}

table tbody,
table tfoot,
table thead {
  border: 0px solid #c4bbb0;
  background-color: #fff;
}

table tr {
  border: solid 1px #c4bbb0;
}

table th {
  padding: 0.5em 1em;
  background-color: #F7F4F1;
  border-right: 1px solid #c4bbb0;
  vertical-align: middle;
  min-width: 100px;
  font-weight: 600;
}

table td {
  padding: 0.5em 1em;
  text-align: left;
  background-color: #fff;
  border-right: 1px solid #c4bbb0;
}

.wp-block-table thead {
  border-bottom: 3px solid #c4bbb0;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid #c4bbb0;
}

/* 定義リスト */
dl {
  display: flex;
}
@media screen and (max-width: 767px) {
  dl {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  dl {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  dt {
    width: 30%;
  }
}

dd {
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  dd {
    width: 70%;
  }
}

dt, dd {
  padding: 0.5em 1em;
}

/* リスト */
ol,
ul {
  box-sizing: border-box;
  list-style-type: revert;
  padding-left: 2rem;
  margin: 2rem 0;
}

ol ol,
ul ul {
  margin: 0.2rem;
}

/* other */
strong {
  font-weight: bold;
}

address {
  display: block;
  font-style: italic;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

em {
  font-style: italic;
}

ins {
  text-decoration: underline;
}

pre,
textarea {
  overflow: auto;
}

pre {
  display: block;
  font-family: monospace;
  white-space: pre-line;
  margin: 1em 0px;
}

q {
  display: inline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt {
  font-family: monospace;
}

var {
  font-style: italic;
}

/*画像配置*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.wp-block-image .aligncenter {
  margin-inline: auto;
}
.wp-block-image .aligncenter img {
  margin-inline: auto;
}

.wp-block-image .aligncenter > figcaption {
  text-align: center;
}

.wp-block-image .alignright {
  float: right;
  margin-bottom: 40px;
  margin-left: 60px;
}
@media screen and (max-width: 1023px) {
  .wp-block-image .alignright {
    margin-left: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-image .alignright {
    float: none;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
  }
}

.wp-block-image .alignleft {
  float: left;
  margin-right: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .wp-block-image .alignleft {
    margin-right: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-image .alignleft {
    float: none;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
  }
}

.wp-caption-text {
  margin-top: 0;
}

.alignnone {
  max-width: 100%;
}

main#content::after {
  content: "";
  display: block;
  clear: both;
}

ul:not(article ul) {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.entry-links:not(.single .entry-links):not(.page .entry-links) {
  display: none;
}

/* form */
input,
textarea,
select {
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid white;
  outline: none;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}

textarea[rows] {
  height: auto;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.wpcf7 input[type=submit] {
  font-size: 100%;
  background: #D6C6B3;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #D6C6B3;
  padding: 0.8em 2em;
}
.wpcf7 input[type=submit]:hover {
  border: 1px solid #9C7C4A;
}

.wpcf7c-btn-back {
  margin-right: 1em;
  font-size: 100%;
  background: #666;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #666;
  padding: 0.8em 2em;
}

.wpcf7 label {
  line-height: 1.4em;
  font-size: 1rem;
  font-weight: 500;
  cursor: default;
  display: block;
  width: 200px;
}

.wpcf7-mail-sent-ok {
  border: 2px solid #485769;
}

@media only screen and (max-width: 767px) {
  .wpcf7 label {
    padding: 0;
  }
  .wpcf7 label.middle {
    margin: 0 0 0.5em 0;
  }
}
textarea[rows] {
  height: auto;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #ccc;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #ccc;
}

/*横スクロールヒント*/
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* sticky */
._sticky_a { /*列*/
  position: sticky;
  top: 0;
  left: 0px;
  background: none;
  border-left: none;
  border-right: none;
}

._sticky_a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  min-width: 100px;
  border-left: 1px solid #c4bbb0;
  border-right: 1px solid #c4bbb0;
  background: #F7F4F1;
  z-index: -1;
  box-sizing: content-box;
}

._sticky_b { /*行*/
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}

._sticky_b:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #c4bbb0;
  border-bottom: 1px solid #c4bbb0;
  background: #F7F4F1;
  z-index: -1;
  box-sizing: content-box;
}

._sticky_ab {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  z-index: 1;
}

._sticky_ab:before {
  content: "";
  position: absolute;
  min-width: 100px;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border-top: 1px solid #c4bbb0;
  border-bottom: 1px solid #c4bbb0;
  border-left: 1px solid #c4bbb0;
  border-right: 1px solid #c4bbb0;
  background: #F7F4F1;
  z-index: -1;
  box-sizing: content-box;
}

/* page-top */
div#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: #B8A48A;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
div#page-top:before {
  content: "";
  background-image: url(../images/icon/up-arrow-wt.svg);
  width: 22px;
  height: 11px;
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div#page-top:hover {
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  div#page-top {
    right: 16px;
    bottom: 110px;
  }
}

/* flexible-table */
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border-color: #c4bbb0;
  padding: 0.5rem 1rem;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #F7F4F1;
  border-color: #c4bbb0;
  padding: 0.5rem 1rem;
}

/* olstyle */
.page ol {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0em;
}
.page ol li {
  position: relative;
  line-height: 1.8;
  padding: 0;
  display: flex;
  gap: 15px;
}
.page ol li:not(:last-child) {
  margin-bottom: 1rem;
}
.page ol li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #9C7C4A;
  color: #fff;
  font-size: 18px;
  position: relative;
  top: 4px;
  width: 25px;
  height: 25px;
  line-height: 1.6rem;
  text-align: center;
  flex-shrink: 0;
}

.h1-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.page-template-page_fullwidth .content.sidebarLayout {
  max-width: 100%;
  padding: 0;
}

/* font */
@font-face {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Libre_Caslon_Display/LibreCaslonDisplay-Regular.woff2") format("woff2"), url("../fonts/Libre_Caslon_Display/LibreCaslonDisplay-Regular.woff") format("woff");
}
@font-face {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/BIZ_UDMincho/BIZUDMincho-Regular.woff2") format("woff2"), url("../fonts/BIZ_UDMincho/BIZUDMincho-Regular.woff") format("woff");
}
.en {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
}

.ja-min {
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  font-weight: 400;
}

.tablepress th {
  text-align: center;
  background: #F7F4F1;
  border-right: 1px solid #c4bbb0;
  padding: 0.5rem 1rem;
}
.tablepress td {
  border: 1px solid #c4bbb0;
  padding: 0.5rem 1rem;
}

.tablepress > :where(thead, tfoot) > tr > * {
  background: #F7F4F1;
}

/* layout */
@media screen and (min-width: 1024px) {
  .archive:not(.tax-treatment_category):not(.tax-treatment-tag):not(.category):not(.tag):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag):not(.post-type-archive-treatment) .sidebarLayout,
  .single:not(.single-treatment):not(.single-case) .sidebarLayout {
    display: flex;
    flex-direction: row-reverse;
    gap: 68px;
  }
  .archive:not(.tax-treatment_category):not(.tax-treatment-tag):not(.category):not(.tag):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag):not(.post-type-archive-treatment) .sidebarLayout main#content,
  .single:not(.single-treatment):not(.single-case) .sidebarLayout main#content {
    flex-grow: 1;
    max-width: 885px;
  }
}
/* header */
#branding #site-title h1 {
  margin-bottom: 0;
  display: inline-block;
}
#branding .logo {
  background-image: url(../images/logo_yoko.png);
  width: 133px;
  height: 54px;
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  #branding .logo {
    width: 103px;
    height: 42px;
  }
}
@media screen and (max-width: 1023px) {
  #branding .site-logo {
    margin: 10px 0 0 10px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  #branding {
    margin-right: auto;
  }
}

#menu-headnav li a:hover {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .sp-logo {
    background-image: url(../images/logo_yoko.png);
    width: 103px;
    height: 42px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s;
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 15px;
  }
}

/*page-header*/
.page-header {
  margin-top: 60px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .page-header {
    margin-top: 80px;
    margin-bottom: 1rem;
  }
}
.page-header.type3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  position: relative;
}
.page-header.type3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(145, 133, 119, 0.8);
  z-index: 0;
}
.page-header.type3 .page-header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1023px) {
  .page-header.type3 .page-header-inner {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  .page-header.type3 {
    height: 300px;
  }
}
.page-header.type3 .page-header-title {
  font-size: clamp(22px, 13.176px + 1.838vw, 32px);
  text-align: center;
  letter-spacing: 5px;
  margin: 0 0 0 0;
  position: relative;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
}
.page-header.type3 .head-en {
  color: #FFEECE;
  font-size: clamp(18px, 12.706px + 1.103vw, 24px);
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .page-header img {
    height: 300px;
  }
}

/* footer */
#footer {
  background: #F7F4F1;
}
@media screen and (max-width: 1023px) {
  #footer {
    padding-bottom: 102px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  #footer {
    margin-top: 80px;
  }
}
#footer a {
  text-decoration: none;
  color: #3C2F25;
}
#footer .footer-contents-wrap {
  display: flex;
  padding-top: 72px;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  #footer .footer-contents-wrap {
    padding-top: 40px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  #footer .footer-contents-wrap {
    gap: 15px;
    justify-content: space-between;
  }
}
#footer .footer-contents {
  flex-grow: 1;
}
@media screen and (min-width: 1024px) {
  #footer .footer-contents {
    max-width: 600px;
  }
}
#footer .footer-contents .footer-contents-txt {
  margin-top: 2em;
}
#footer .footer-contents .footer-contents-txt p {
  font-size: 14px;
}
#footer .footer-contents .footer-contents-txt .googlemap iframe {
  filter: grayscale(1);
}
#footer .footer-contents .footer-contents-txt .googlemap {
  position: relative;
  margin-top: 40px;
}
#footer .footer-contents .footer-contents-txt .googlemap:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: overlay;
  background: #948266;
}
#footer .footer-menu {
  width: 320px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #footer .footer-menu {
    width: 100%;
  }
}
#footer .footer-menu > li:not(:last-child) {
  margin-bottom: 1.5em;
}
#footer .footer-menu h2, #footer .footer-menu .widgettitle, #footer .footer-menu .footer-title {
  font-size: 24px;
  margin-bottom: 0.5em;
  padding: 0;
  color: #8A6A3E;
}
#footer .footer-menu .menu-item {
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  font-size: 14px;
}
#footer .footer-menu .menu-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
#footer .footer-menu .menu-item:before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #8A6A3E;
  border-right: 1px solid #8A6A3E;
}
#footer .footer-menu ul#menu-footer-link {
  margin-inline: auto;
  -moz-column-count: 2;
       column-count: 2;
  margin-bottom: 32px;
}
#footer .foot-links {
  display: block;
  color: #8A6A3E;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #8A6A3E;
  text-align: center;
  font-size: 14px;
  padding: 8px 8px;
  margin-bottom: 8px;
}
#footer .foot-links:hover {
  background-color: #918577;
  color: #fff;
}
#footer .foot-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
#footer .foot-logo p {
  font-size: 14px;
  margin-bottom: 0;
}
#footer .foot-logo img {
  border-right: 1px solid #c4bbb0;
  padding-right: 16px;
  flex-shrink: 0;
}

#copyright {
  color: #B8A48A;
  padding: 3em 0 1em 0;
  text-align: center;
  font-size: 12px;
}

#nav_menu-2 .sub-menu {
  display: none;
}

#footer ul.sub-menu {
  display: block;
  margin: 8px 0;
}

.f-cta-area .content {
  display: flex;
  gap: 24px;
  margin-top: clamp(48px, 10.941px + 7.721vw, 90px);
}
@media screen and (max-width: 1023px) {
  .f-cta-area .content {
    flex-direction: column;
    gap: 16px;
  }
}
.f-cta-area a {
  display: block;
  background-color: #918577;
  color: #fff;
  font-size: clamp(15px, 12.353px + 0.551vw, 18px);
  position: relative;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 5px;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .f-cta-area a {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 767px) {
  .f-cta-area a img {
    width: 20px;
  }
}
.f-cta-area a:after {
  content: "";
  background-image: url(../images/icon/arrow-down-wt.svg);
  width: 17px;
  height: 12px;
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: rotate(-90deg);
  transform-origin: top;
}
.f-cta-area a:hover {
  color: #fff;
  background-color: rgb(123.3951219512, 112.5073170732, 99.8048780488);
}

/* main */
.search .header {
  background-color: rgba(214, 198, 179, 0.1);
  border-radius: 5px;
  padding: 0.5em 1em;
  margin-bottom: 1.5em;
}
.search .header p {
  margin-bottom: 0;
}

/* 記事リスト共通-サムネ無し記事 */
.search article:not(:last-of-type), .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) article:not(:last-of-type), .blog article:not(:last-of-type) {
  border-bottom: 1px dotted #c4bbb0;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.search .attachment-thumbnail, .search .noimg, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .attachment-thumbnail, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .noimg, .blog .attachment-thumbnail, .blog .noimg {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search h2, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) h2, .blog h2 {
  font-size: clamp(16px, 8.941px + 1.471vw, 24px);
  padding: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .search h2, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) h2, .blog h2 {
    margin-bottom: 0.3em;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}
.search .entry-summary, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary, .blog .entry-summary {
  color: #666;
  display: flex;
  gap: 30px;
  margin-top: 1em;
}
.search .entry-summary > a, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary > a, .blog .entry-summary > a {
  display: none;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .search .entry-summary > a, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary > a, .blog .entry-summary > a {
    width: 100%;
  }
}
.search .entry-summary > a img, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary > a img, .blog .entry-summary > a img {
  transition: 0.5s;
}
.search .entry-summary > a:hover img, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary > a:hover img, .blog .entry-summary > a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .search .entry-summary, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary, .blog .entry-summary {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .search .entry-summary, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-summary, .blog .entry-summary {
    display: none;
  }
}
.search .entry-meta, .search .entry-meta a, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-meta, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) .entry-meta a, .blog .entry-meta, .blog .entry-meta a {
  text-align: right;
  font-size: 14px;
}
.search header, .archive:not(.post-type-archive-treatment):not(.post-type-archive-case):not(.tax-case-cat):not(.tax-case-tag) header, .blog header {
  width: 100%;
}

body:not(.post-type-archive-news) .summary-list time {
  font-size: 14px;
  display: none;
}
@media screen and (min-width: 1024px) {
  body:not(.post-type-archive-news) .summary-list time { /*
  display: none;
*/ }
}

@media screen and (max-width: 1023px) {
  .archive .entry-meta {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .archive .entry-meta header .entry-date {
    display: none;
  }
}

.jump_point {
  padding-top: 100px;
  margin-top: -100px;
}

.post-type-archive-news .eyecatch,
.tax-news_category .eyecatch {
  display: none;
}

.contents1-item {
  display: grid;
  gap: 30px 15px;
}
.contents1-item.bgcolor li {
  padding: 1em;
  background: #fff;
}
.contents1-item.bgcolor li h3, .contents1-item.bgcolor li h4 {
  color: #9C7C4A;
}
.contents1-item h3, .contents1-item h4 {
  font-size: 21px;
  text-align: center;
  margin-bottom: 16px;
}
.contents1-item p:last-child {
  margin-bottom: 0;
}
.contents1-item img {
  margin: 0 auto 1em auto;
}
@media screen and (min-width: 768px) {
  .contents1-item.col2 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .contents1-item.col3 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .contents1-item.col3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .contents1-item.col4 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .contents1-item.col4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px 30px;
  }
}

.c-linklist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 0;
}
.c-linklist li {
  padding: 0 1em;
  border-right: 1px dashed #c4bbb0;
}
.c-linklist li:first-child {
  border-left: 1px dashed #c4bbb0;
}
.c-linklist a {
  color: #3C2F25;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 25px;
  transition: 0.5s;
}
.c-linklist a:hover:before {
  opacity: 0.6;
}
.c-linklist a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #D6C6B3;
  transition: 0.5s;
}
.c-linklist a:hover:after {
  opacity: 0.6;
}
.c-linklist a:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0;
  right: 9px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s;
}

/* price */
.p-small {
  font-size: 12px;
}

.p-smallyen {
  font-size: 14px;
  padding: 8px 0;
  display: block;
}

@media screen and (max-width: 1023px) {
  .t-scroll {
    overflow-x: auto;
  }
  .t-scroll table {
    min-width: 600px;
    /*white-space: nowrap; */
  }
}

.tablepress td.column-1:has(.tdmida),
.tablepress td.column-2:has(.tdmida) {
  background: #F7F4F1;
  font-weight: bold;
  text-align: center !important;
}

#tablepress-138 td.column-2 {
  text-align: right;
}

.section-nav {
  width: 100%;
  display: block;
  margin: 0 auto 1.5rem auto;
  margin-bottom: 1.5rem;
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
}
@media screen and (min-width: 768px) {
  .section-nav {
    width: 300px;
  }
}

.page-template-page-price .tab-scroll-wrapper {
  margin-bottom: 2rem;
}
.page-template-page-price .tab-list-wrap {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .page-template-page-price .tab-list-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
}
.page-template-page-price .tab-btn {
  display: flex;
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 6px;
}
@media screen and (max-width: 1023px) {
  .page-template-page-price {
    /* フェード＋矢印 */
    /* 矢印 */
    /* スクロール済みで矢印を消す */
  }
  .page-template-page-price .tab-scroll-wrapper {
    position: relative;
    overflow: hidden; /* 擬似要素がはみ出さないように */
  }
  .page-template-page-price .tab-list-wrap {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-right: 40px;
    margin-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .page-template-page-price .tab-list-wrap::-webkit-scrollbar {
    display: none;
  }
  .page-template-page-price .tab-list-wrap::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
  }
  .page-template-page-price .tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .page-template-page-price .tab-scroll-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 70%);
    pointer-events: none;
    z-index: 2;
  }
  .page-template-page-price .tab-scroll-wrapper::before {
    content: "›";
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #888;
    font-weight: bold;
    z-index: 3;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .page-template-page-price .tab-scroll-wrapper.scrolled::before {
    opacity: 0;
  }
  .page-template-page-price .section-nav {
    position: sticky;
    top: 90px; /* ヘッダー高さに合わせる */
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
}

div#wpforms-10512 {
  max-width: 800px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  div#wpforms-10512 {
    padding: 2rem 4rem;
    border: 1px solid #F7F4F1;
    border-radius: 4px;
  }
}

button#wpforms-submit-10512 {
  margin-inline: auto;
  display: block;
  width: 200px;
  text-align: center;
}

.dr-name {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  text-align: center;
  font-size: clamp(16px, 10.706px + 1.103vw, 22px);
}
.dr-name .dr-name-k {
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  margin-right: 16px;
}
.dr-name .dr-name-name {
  font-size: clamp(30px, 21.176px + 1.838vw, 40px);
}
@media screen and (min-width: 1024px) {
  .dr-name {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .drprof {
    -moz-column-count: 2;
         column-count: 2;
  }
}

.pagelead {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-size: clamp(17px, 5.529px + 2.39vw, 30px);
  color: #9C7C4A;
}

.access-tel {
  margin-top: 0;
  text-align: center;
}
.access-tel a {
  font-size: clamp(30px, 21.176px + 1.838vw, 40px);
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
}

@media screen and (min-width: 1024px) {
  .artist-prof-wrap {
    display: flex;
    gap: 24px;
    margin: 32px 0 0 0;
  }
}

.artist-prof {
  border: 1px solid #c4bbb0;
  padding: 16px;
  border-radius: 5px;
  margin-bottom: 24px;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 1023px) {
  .artist-prof {
    padding: 32px 16px;
  }
}
.artist-prof .wp-block-image {
  margin-bottom: 0 !important;
}
.artist-prof .wp-block-image img {
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .artist-prof {
    margin-bottom: 0px;
  }
}
.artist-prof .insta-link {
  margin-top: 16px;
}
.artist-prof .artist-name {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  color: #7A5C43;
  border-bottom: 1px solid #c4bbb0;
  padding-bottom: 8px;
}
@media screen and (max-width: 1023px) {
  .artist-prof .artist-name {
    text-align: center;
  }
}

/* PCは responsive ブロックのみ常時表示 */
@media (min-width: 768px) {
  [data-acc=responsive] .toggle_content {
    display: block !important;
  }
}
/* SPで responsive ブロックはアコーディオン化 */
@media (max-width: 767px) {
  [data-acc=responsive] .toggle_content {
    display: none;
  }
  [data-acc=responsive] .toggle_title {
    cursor: pointer;
    position: relative;
    padding-right: 1.5em;
  }
  [data-acc=responsive] .toggle_title::after {
    content: "+";
    position: absolute;
    right: 10px;
    font-size: 40px;
    line-height: 0.8;
  }
  [data-acc=responsive] .toggle_title.selected::after {
    content: "−";
    top: 50%;
  }
}
.treatment_top-column.wp-block-columns-is-layout-flex {
  gap: clamp(24px, 9.882px + 2.941vw, 40px);
}

@media screen and (min-width: 1024px) {
  .treatment-txtonly {
    text-align: center;
  }
}

.tab-btn {
  background-color: #F9F7F5;
  border: 1px solid #c4bbb0;
  color: #8A6A3E;
}
.tab-btn.active {
  background-color: #E1D9D2;
  color: #3C2F25;
}

.related-cases {
  margin-top: 4rem;
}

/* sidebar */
#sidebar {
  border-right: 1px solid #E4DED7;
  width: 250px;
  flex-shrink: 0;
  padding: 0px 30px 0px 0px;
}
@media screen and (max-width: 1023px) {
  #sidebar {
    display: none;
  }
}
#sidebar .widget-area {
  width: 100%;
}
#sidebar .widget-area a:not(.btn) {
  color: #3C2F25;
}
#sidebar .widget-area a:not(.btn):hover {
  color: #3C2F25;
  opacity: 0.5;
}
#sidebar .widget-area > ul > li h3 {
  padding: 0;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  text-align: center;
  margin-bottom: -1em;
  border-bottom: 1px solid #3C2F25;
  padding-bottom: 0.5em;
}
#sidebar .widget-area > ul > li .widget-title {
  padding: 0;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  text-align: center;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #3C2F25;
  padding-bottom: 0.5em;
}
#sidebar .widget-area > ul > li.widget-container:not(:last-child) {
  margin-bottom: 2em;
}
#sidebar .widget-area > ul > li.widget-container .menu > li, #sidebar .widget-area > ul > li.widget-container ul > li, #sidebar .widget-area > ul > li .widget_categories .menu > li, #sidebar .widget-area > ul > li .widget_categories ul > li {
  padding-left: 1.5em;
  position: relative;
}
#sidebar .widget-area > ul > li.widget-container .menu > li:before, #sidebar .widget-area > ul > li.widget-container ul > li:before, #sidebar .widget-area > ul > li .widget_categories .menu > li:before, #sidebar .widget-area > ul > li .widget_categories ul > li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 15px;
  height: 16px;
  border-radius: 100%;
  background-color: #D6C6B3;
}
#sidebar .widget-area > ul > li.widget-container .menu > li:after, #sidebar .widget-area > ul > li.widget-container ul > li:after, #sidebar .widget-area > ul > li .widget_categories .menu > li:after, #sidebar .widget-area > ul > li .widget_categories ul > li:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 5px;
  transform: rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu {
  position: relative;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu li:before, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu li:before, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu li:before, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu li:before {
  content: none;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu li:after, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu li:after, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu li:after, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu li:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 2px;
  transform: rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 1px solid #D6C6B3;
  border-right: 1px solid #D6C6B3;
}
#sidebar .wp-block-heading {
  padding: 0;
  font-size: 20px;
  color: #9C7C4A;
  border-bottom: 1px solid #9C7C4A;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
  font-weight: 400;
}

button.wp-block-search__button.wp-element-button {
  min-width: 60px;
}

#sidebar .widget-title {
  padding: 0;
  font-size: 20px;
  color: #D6C6B3;
  border-bottom: 1px solid #D6C6B3 !important;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  text-align: left !important;
}

ul#npcatch li {
  padding-left: 0em !important;
}
ul#npcatch li:before {
  display: none;
}
ul#npcatch li a {
  gap: 10px;
}
ul#npcatch li .detail {
  font-size: 14px;
  line-height: 1.6;
}

#npcatch figure {
  flex-shrink: 0;
}

.cat-item.cat-item-1 {
  display: none;
}

/*　最近の記事　*/
.rpwwt-widget nav ul li {
  padding-left: 0 !important;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.rpwwt-widget nav ul li img {
  margin: 0em 0.75em 0.75em 0;
}
.rpwwt-widget nav ul li:before, .rpwwt-widget nav ul li:after {
  display: none;
}

span.rpwwt-post-title {
  font-size: 14px;
}

.rpwwt-widget ul li img {
  width: 80px;
  height: 80px;
}

/* postlist */
.side-post {
  margin-top: 40px;
}
.side-post .content_thumb {
  flex-shrink: 0;
}
.side-post .content_thumb img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-post .content_title {
  font-size: 14px;
  line-height: 1.5;
}
.side-post .postlists_item a {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  color: #3C2F25;
  opacity: 1;
}
.side-post .postlists_item a:hover {
  opacity: 0.5;
}
.side-post .side-postlists {
  margin-top: 28px;
}

p {
  font-size: 16px;
  /*  @include m.sp-max{
      font-size: 17px;
  line-height: 1.8;
    } */
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

h1 {
  font-size: clamp(23.61px, 15.819px + 1.623vw, 32.44px);
  font-weight: 400;
  font-family: "BIZ UDMincho", serif;
}

h2 {
  font-size: clamp(21.13px, 15.218px + 1.232vw, 27.83px);
  font-weight: 400;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}
@media screen and (max-width: 1023px) {
  h2 {
    padding: 0 24px;
  }
}

h3 {
  font-size: clamp(20px, 15.915px + 0.851vw, 24.63px);
  font-weight: 400;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

h4 {
  font-size: clamp(19.44px, 16.493px + 0.614vw, 22.78px);
  font-weight: 400;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

h5 {
  font-size: clamp(18.22px, 16.429px + 0.373vw, 20.25px);
  font-weight: 400;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

h6 {
  font-size: clamp(17.07px, 16.249px + 0.171vw, 18px);
  font-weight: 400;
  font-family: "Libre Caslon Display", "BIZ UDMincho", serif;
}

/*　見出し　*/
.h2--center {
  text-align: center;
  position: relative;
  font-size: clamp(18px, 11.824px + 1.287vw, 25px);
  line-height: 1.2;
  margin-bottom: clamp(40px, 25.882px + 2.941vw, 56px);
}
.h2--center::before {
  content: attr(data-sub);
  font-size: clamp(38px, 23px + 3.125vw, 55px);
  color: #9C7C4A;
  display: block;
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
}

.bg-color {
  background-color: #b8a48a;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .bg-color {
    padding: 100px 0;
  }
}

.item-bg-color {
  background-color: #fff;
  padding: 2em;
}

/* 回り込み解除 */
.clear {
  clear: both;
}

/*　営業　*/
table.Opening-hours {
  width: 100%;
  /* max-width: 500px; */
  margin: 0;
  border: 0px solid #ccc;
}
table.Opening-hours th {
  font-weight: 500;
  min-width: 1em;
  padding: 0;
  color: #3C2F25;
  background-color: #B8A48A;
}
table.Opening-hours td {
  padding: 0;
  color: #3C2F25;
  text-align: center;
  font-size: 12px;
}
table.Opening-hours td.time {
  font-size: 14px;
}
table.Opening-hours.oh-1 tbody {
  background-color: transparent;
}
table.Opening-hours.oh-1 tr {
  border-top: solid 0px transparent;
  border-left: solid 0px transparent;
  border-bottom: solid 0px transparent;
  border-right: solid 0px transparent;
}
table.Opening-hours.oh-1 tr:not(:last-child) {
  border-bottom: solid 1px #fff;
}
table.Opening-hours.oh-1 th {
  line-height: 1;
  padding: 15px 5px;
  color: #fff;
  background-color: transparent;
  border-right: 0px solid #fff;
}
table.Opening-hours.oh-1 th:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-1 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  color: #fff;
  border-right: 0px solid #fff;
}
table.Opening-hours.oh-1 td:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-2 tr {
  border: solid 1px #D6C6B3;
}
table.Opening-hours.oh-2 th {
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #D6C6B3;
}
table.Opening-hours.oh-2 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #D6C6B3;
}
table.Opening-hours.oh-3 tr {
  border: solid 1px #c4bbb0;
}
table.Opening-hours.oh-3 th {
  text-align: center;
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #c4bbb0;
  background-color: white;
}
table.Opening-hours.oh-3 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #c4bbb0;
}
table.Opening-hours.oh-4 tbody {
  background-color: transparent;
}
table.Opening-hours.oh-4 tr {
  border-top: solid 0px transparent;
  border-left: solid 0px transparent;
  border-bottom: solid 0px transparent;
  border-right: solid 0px transparent;
}
table.Opening-hours.oh-4 tr:not(:last-child) {
  border-bottom: solid 1px #c4bbb0;
}
table.Opening-hours.oh-4 th {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #c4bbb0;
}
table.Opening-hours.oh-4 th:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-4 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #c4bbb0;
}
table.Opening-hours.oh-4 td:last-child {
  border-right: 0px solid transparent;
}

/* movie */
.movie_iframe {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.movie_iframe iframe {
  width: 100%;
  height: 100%;
}

.is-provider-youtube {
  max-width: 700px;
  margin-inline: auto;
}

/* bread */
#breadcrumb {
  border-bottom: 1px solid #e8e4e0;
  margin-bottom: clamp(24px, 9.882px + 2.941vw, 40px);
}

#breadcrumb ul {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  margin-top: 0px;
  margin-bottom: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 1023px) {
  #breadcrumb ul {
    padding: 0 24px;
  }
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}
#breadcrumb ul li {
  font-size: clamp(12px, 12px + 0vw, 12px);
}
#breadcrumb ul li a {
  color: #3C2F25;
}
#breadcrumb ul li a:hover {
  color: #5C4A2D;
}
#breadcrumb ul > * + *::before {
  content: "/";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

/* form */
textarea,
input[type=tel],
input[type=email],
input[type=text],
input[type=button],
input[type=reset],
input[type=search],
input[type=password] {
  border: 1px solid #666;
  padding: 5px 10px;
  border-radius: 5px;
}

input[type=submit] {
  border: 1px solid #9C7C4A;
  padding: 5px 15px;
  background-color: #9C7C4A;
  border-radius: 5px;
  transition: 0.5s;
}
input[type=submit]:hover {
  cursor: pointer;
  background-color: rgb(121.4086956522, 96.5043478261, 57.5913043478);
}

select {
  border: 1px solid #666;
  padding: 5px 10px;
  border-radius: 5px;
}

/* page nav */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3em;
}
.nav-links .page-numbers:not(.dots) {
  color: #8A6A3E;
  padding: 0 0.5em;
  border: 1px solid #8A6A3E;
  transition: 0.5s;
}
.nav-links .page-numbers:not(.dots).current {
  background-color: #8A6A3E;
  font-weight: bold;
  color: #fff;
}
.nav-links .page-numbers:not(.dots):not(span):hover {
  background-color: #8A6A3E;
  color: #fff;
}

.page-sec-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #F7F4F1;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .page-sec-bg {
    padding: 100px 0px;
  }
}

.toggle_title:not(.column-cat) {
  font-weight: normal;
  margin: 0;
  padding: 1em 50px 1em 1em;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.6;
  color: inherit !important;
  font-size: clamp(18px, 17px + (100vw - 480px) * 0.0013888889, 18px) !important;
  border-bottom: 1px solid #c4bbb0;
}
.toggle_title:not(.column-cat).toggle-q {
  padding: 1em 50px 1em 36px !important;
  font-size: clamp(17px, 16.118px + 0.184vw, 18px);
  position: relative;
}
.toggle_title:not(.column-cat).toggle-q:before {
  content: "Q";
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-size: clamp(25px, 20.588px + 0.919vw, 30px);
  position: absolute;
  line-height: 1;
  color: #D6C6B3;
  left: 0px;
}
@media screen and (min-width: 1024px) {
  .toggle_title:not(.column-cat).toggle-q {
    padding: 1em 50px 1em 56px !important;
  }
}

h3.toggle_title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.toggle_title:not(.column-cat):hover {
  color: #D6C6B3;
}

.toggle_title:not(.column-cat):after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 21px;
  background: url(../images/icon/arrow-down.svg) no-repeat right top;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.2s;
}

.toggle_title.selected:after {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.2s;
}

.toggle_txt {
  display: none;
  padding: 1em;
  margin: 1em 0;
}
.toggle_txt p:last-child {
  margin-bottom: 0;
}
.toggle_txt.toggle-a {
  position: relative;
  padding: 1em 1em 1em 2.5em;
}
.toggle_txt.toggle-a:before {
  content: "A";
  font-size: clamp(25px, 20.588px + 0.919vw, 30px);
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  position: absolute;
  line-height: 1;
  left: 3px;
  font-weight: 700;
  color: #9C7C4A;
}

.toggle_contents.toggle_color {
  border-radius: 10px;
  color: #fff;
}
.toggle_contents.toggle_color .toggle_title {
  border-radius: 10px;
  border-bottom: 0px;
  background-color: #D6C6B3 !important;
}
.toggle_contents.toggle_color .toggle_title:hover {
  color: #fff;
}
.toggle_contents.toggle_color .toggle_title:after {
  background: url(../images/icon/arrow-down-wt.svg) no-repeat right top;
  background-size: cover;
}
.toggle_contents.toggle_color .toggle_title.toggle-q {
  padding: 1em 50px 1em 50px;
}
.toggle_contents.toggle_color .toggle_title.toggle-q:before {
  color: #fff;
  left: 15px;
}
.toggle_contents.toggle_color .toggle_txt {
  background-color: #fff;
  color: #3C2F25;
  margin: 0;
}
.toggle_contents.toggle_color .toggle_txt.toggle-a {
  padding: 1em 50px 1em 50px;
}
.toggle_contents.toggle_color .toggle_txt.toggle-a:before {
  left: 16px;
}

ol.pageItem.olist {
  list-style: none;
  counter-reset: number;
  padding: 0;
}
ol.pageItem.olist li {
  position: relative;
  padding-left: 2.5rem;
}
ol.pageItem.olist li:not(:last-child) {
  margin-bottom: 1.5rem;
}
ol.pageItem.olist li:before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: #9C7C4A;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  ol.pageItem.olist li:before {
    line-height: 1.5;
  }
}

.stepbar4 h3.title {
  margin-top: 0px !important;
  background-color: transparent !important;
  padding: 0 !important;
}
.stepbar4 .steptxtimg {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.stepbar4 .steptxtimg p:last-of-type {
  margin-bottom: 0;
}
.stepbar4 .steptxtimg p:last-of-type picture {
  flex-shrink: 0;
}
.stepbar4 .steptxtimg ul {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .stepbar4 .steptxtimg img {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .stepbar4 .steptxtimg {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}
.stepbar4 .stepbarwrap {
  display: flex;
  width: 100%;
  gap: 30px;
}
.stepbar4 .stepbarwrap:last-child .stepcircle:before {
  content: none;
}
.stepbar4 .stepinner {
  flex-grow: 1;
}
.stepbar4 .stepcircle {
  position: relative;
}
.stepbar4 .stepcircle:before {
  content: "";
  border-right: #e4e4e4 dotted 4px;
  display: block;
  height: calc(100% - 25px);
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: clamp(22px, 25.765px + -0.368vw, 24px);
}
.stepbar4 .stepcircle span {
  background: #D6C6B3;
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 28px;
  line-height: 0;
}
.stepbar4 .steptxtimg picture {
  flex-shrink: 0;
}

/*定義リスト*/
dl.dl01 {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 0;
}
dl.dl01 dt {
  flex-basis: 20%;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #D6C6B3;
  color: #9C7C4A;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 16px + 0vw, 16px);
}
@media screen and (max-width: 767px) {
  dl.dl01 dt {
    flex-basis: 30%;
    padding: 10px 10px;
    text-align: center;
  }
}
dl.dl01 dd {
  flex-basis: 80%;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #c4bbb0;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  dl.dl01 dd {
    flex-basis: 70%;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01 .dl01 dl {
    flex-flow: column;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01.spfull dt, dl.dl01.spfull dd {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01.spfull dd {
    border-bottom: 0px;
    padding-left: 10px;
  }
}

.btn {
  display: block;
  text-decoration: none;
  border-radius: 5px;
  padding: 14px 10px;
  text-align: center;
  line-height: 1;
  color: #3C2F25;
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
}
.btn.btn1st {
  background-color: #F9F5EF;
  color: #8A6A3E;
  border: 1px solid #8A6A3E;
}
.btn.btn1st:hover {
  background-color: rgb(242.0454545455, 233.4090909091, 220.4545454545);
}
.btn.btn2nd {
  background-color: #8A6A3E;
  color: #fff;
}
.btn.btn2nd:hover {
  background-color: rgb(102.81, 78.97, 46.19);
  color: #fff;
}
.btn.btn3rd {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.btn3rd:hover {
  background-color: rgb(121.4086956522, 96.5043478261, 57.5913043478);
  color: #fff;
}
.btn.btnM {
  width: 200px;
}

.btnL {
  color: #3C2F25;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  height: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
  background-color: #918577 !important;
  border-radius: 5px;
  color: #fff !important;
  font-family: "BIZ UDMincho", serif;
}
.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link > strong {
  font-weight: 400 !important;
}
.wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link:hover {
  background-color: rgb(131.8536585366, 120.2195121951, 106.6463414634) !important;
}

@media screen and (min-width: 768px) {
  .wp-block-buttons > .wp-block-button.has-custom-width .wp-block-button__link {
    max-width: 500px;
  }
  .wp-block-buttons.is-content-justification-center {
    text-align: center;
  }
}
/* link */
a {
  color: #8A6A3E;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  color: #5C4A2D;
}

.link-arrow {
  color: #3C2F25;
  display: inline-block;
  text-decoration: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding-right: 25px;
  transition: 0.5s;
  margin-right: 15px;
  font-size: 14px;
}
.link-arrow:hover {
  color: #8A6A3E;
}
.link-arrow:before, .link-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.link-arrow:before {
  right: 5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #8A6A3E;
  border-right: 1px solid #8A6A3E;
  transform: rotate(45deg);
  transition: 0.5s;
}
.link-arrow:hover::before {
  right: -5px;
}

.link-box-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.link-box-center {
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

/* article */
.page:not(.page-template-page_lp) article .wp-block-image, .single article .wp-block-image {
  margin-bottom: 1.5em;
}
.page:not(.page-template-page_lp) article h2, .single article h2 {
  padding: 0;
}
.page:not(.page-template-page_lp) article .eyecatch, .single article .eyecatch {
  margin-bottom: 2em;
  /*
  aspect-ratio: 3/2;
    object-fit: cover;
    */
}
.page:not(.page-template-page_lp) article h2:not(.h2--center):not(.nodesign):not(.page_catch):not(.related-title):not(.case-mida), .single article h2:not(.h2--center):not(.nodesign):not(.page_catch):not(.related-title):not(.case-mida) {
  position: relative;
  background: #F7F4F1;
  border-bottom: 1px solid #7A5C43;
  border-top: 1px solid #7A5C43;
  color: #7A5C43;
  padding: 12px;
}
.page:not(.page-template-page_lp) article h2:not(:first-child), .single article h2:not(:first-child) {
  margin-top: clamp(36px, 21.882px + 2.941vw, 52px);
}
.page:not(.page-template-page_lp) article h3:not(.title):not(.nodesign):not(.column-card__title):not(.toggle_title), .single article h3:not(.title):not(.nodesign):not(.column-card__title):not(.toggle_title) {
  color: #7A5C43;
  border-left: 4px solid #9C7C4A;
  border-bottom: 1px solid #7A5C43;
  padding: 0em 15px 8px 15px;
  margin-top: clamp(36px, 21.882px + 2.941vw, 52px);
  margin-bottom: clamp(24px, 16.941px + 1.471vw, 32px);
  font-size: clamp(19px, 13.706px + 1.103vw, 25px);
}
.page:not(.page-template-page_lp) article h3:not(.title):not(.nodesign):not(.column-card__title):not(.toggle_title):has(.feature), .single article h3:not(.title):not(.nodesign):not(.column-card__title):not(.toggle_title):has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article .case-slide h3, .page:not(.page-template-page_lp) article .case-slide h4, .single article .case-slide h3, .single article .case-slide h4 {
  background: transparent !important;
  color: #3C2F25 !important;
  border-left: 0px solid #9C7C4A !important;
  padding: 0em 0 8px 0px !important;
  border-bottom: 0px solid #fff !important;
}
.page:not(.page-template-page_lp) article h4, .single article h4 {
  border-bottom: 1px solid #9C7C4A;
  color: #7A5C43;
  padding-bottom: 0.5em;
  margin-top: clamp(24px, -0.706px + 5.147vw, 52px);
  margin-bottom: clamp(24px, 16.941px + 1.471vw, 32px);
}
.page:not(.page-template-page_lp) article h4:has(.feature), .single article h4:has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article h5, .single article h5 {
  border-left: 10px solid #D6C6B3;
  margin-bottom: clamp(16px, 8.941px + 1.471vw, 24px);
  padding-left: 0.5em;
}
.page:not(.page-template-page_lp) article h6, .single article h6 {
  color: #7A5C43;
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
}
.page:not(.page-template-page_lp) article blockquote p:last-of-type, .single article blockquote p:last-of-type {
  margin-bottom: 0;
}
.page:not(.page-template-page_lp) article .contents2-item, .page:not(.page-template-page_lp) article .contents1-item, .page:not(.page-template-page_lp) article .contents3-item,
.page:not(.page-template-page_lp) article .contents4-item, .page:not(.page-template-page_lp) article .contents6-item, .page:not(.page-template-page_lp) article .stepbar1, .page:not(.page-template-page_lp) article .stepbar2, .page:not(.page-template-page_lp) article .stepbar3, .page:not(.page-template-page_lp) article .menu-list-item,
.page:not(.page-template-page_lp) article .t-contact, .single article .contents2-item, .single article .contents1-item, .single article .contents3-item,
.single article .contents4-item, .single article .contents6-item, .single article .stepbar1, .single article .stepbar2, .single article .stepbar3, .single article .menu-list-item,
.single article .t-contact {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents2-item br, .page:not(.page-template-page_lp) article .contents1-item br, .page:not(.page-template-page_lp) article .contents3-item br,
.page:not(.page-template-page_lp) article .contents4-item br, .page:not(.page-template-page_lp) article .contents6-item br, .page:not(.page-template-page_lp) article .stepbar1 br, .page:not(.page-template-page_lp) article .stepbar2 br, .page:not(.page-template-page_lp) article .stepbar3 br, .page:not(.page-template-page_lp) article .menu-list-item br,
.page:not(.page-template-page_lp) article .t-contact br, .single article .contents2-item br, .single article .contents1-item br, .single article .contents3-item br,
.single article .contents4-item br, .single article .contents6-item br, .single article .stepbar1 br, .single article .stepbar2 br, .single article .stepbar3 br, .single article .menu-list-item br,
.single article .t-contact br {
  display: none;
}
.page:not(.page-template-page_lp) article .contents2-item p br, .page:not(.page-template-page_lp) article .contents1-item p br, .page:not(.page-template-page_lp) article .contents3-item p br,
.page:not(.page-template-page_lp) article .contents4-item p br, .page:not(.page-template-page_lp) article .contents6-item p br, .page:not(.page-template-page_lp) article .stepbar1 p br, .page:not(.page-template-page_lp) article .stepbar2 p br, .page:not(.page-template-page_lp) article .stepbar3 p br, .page:not(.page-template-page_lp) article .menu-list-item p br,
.page:not(.page-template-page_lp) article .t-contact p br, .single article .contents2-item p br, .single article .contents1-item p br, .single article .contents3-item p br,
.single article .contents4-item p br, .single article .contents6-item p br, .single article .stepbar1 p br, .single article .stepbar2 p br, .single article .stepbar3 p br, .single article .menu-list-item p br,
.single article .t-contact p br {
  display: block;
}
.page:not(.page-template-page_lp) article .contents2-item h3, .page:not(.page-template-page_lp) article .contents1-item h3, .page:not(.page-template-page_lp) article .contents3-item h3,
.page:not(.page-template-page_lp) article .contents4-item h3, .page:not(.page-template-page_lp) article .contents6-item h3, .page:not(.page-template-page_lp) article .stepbar1 h3, .page:not(.page-template-page_lp) article .stepbar2 h3, .page:not(.page-template-page_lp) article .stepbar3 h3, .page:not(.page-template-page_lp) article .menu-list-item h3,
.page:not(.page-template-page_lp) article .t-contact h3, .single article .contents2-item h3, .single article .contents1-item h3, .single article .contents3-item h3,
.single article .contents4-item h3, .single article .contents6-item h3, .single article .stepbar1 h3, .single article .stepbar2 h3, .single article .stepbar3 h3, .single article .menu-list-item h3,
.single article .t-contact h3 {
  margin-bottom: 0.5em;
  background: inherit;
  color: inherit;
  padding: initial;
}
.page:not(.page-template-page_lp) article .contents3-item.img-left-list li .contents3-item-r, .single article .contents3-item.img-left-list li .contents3-item-r {
  padding: 0 0 0 2em;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents3-item.img-right-list li .contents3-item-r, .single article .contents3-item.img-right-list li .contents3-item-r {
  padding: 0 2em 0 0;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents4-item-bottomList, .single article .contents4-item-bottomList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents5 .content, .single article .contents5 .content {
  width: 100%;
  padding: 0 30px;
}
.page:not(.page-template-page_lp) article .contents5 .content .contents5-num, .single article .contents5 .content .contents5-num {
  left: 30px;
}
.page:not(.page-template-page_lp) article .contents5-3 > p, .page:not(.page-template-page_lp) article .contents5 > p, .page:not(.page-template-page_lp) article .contents5-2 > p, .page:not(.page-template-page_lp) article .t-contact > p, .single article .contents5-3 > p, .single article .contents5 > p, .single article .contents5-2 > p, .single article .t-contact > p {
  display: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2, .page:not(.page-template-page_lp) article .contents5 h2, .page:not(.page-template-page_lp) article .contents5-2 h2, .page:not(.page-template-page_lp) article .t-contact h2, .single article .contents5-3 h2, .single article .contents5 h2, .single article .contents5-2 h2, .single article .t-contact h2 {
  background-color: initial;
  padding: 0;
  border: 0px;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::before, .page:not(.page-template-page_lp) article .contents5 h2::before, .page:not(.page-template-page_lp) article .contents5-2 h2::before, .page:not(.page-template-page_lp) article .t-contact h2::before, .single article .contents5-3 h2::before, .single article .contents5 h2::before, .single article .contents5-2 h2::before, .single article .t-contact h2::before {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::after, .page:not(.page-template-page_lp) article .contents5 h2::after, .page:not(.page-template-page_lp) article .contents5-2 h2::after, .page:not(.page-template-page_lp) article .t-contact h2::after, .single article .contents5-3 h2::after, .single article .contents5 h2::after, .single article .contents5-2 h2::after, .single article .t-contact h2::after {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.page:not(.page-template-page_lp) article .stepbar3 .stepbarwrap .steptitle .stepcircle span, .single article .stepbar3 .stepbarwrap .steptitle .stepcircle span {
  top: 0.7em;
}
.page:not(.page-template-page_lp) article .c-linklist, .single article .c-linklist {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 3em;
}
.page:not(.page-template-page_lp) article .toggle_contents.toggle_color .toggle_title, .single article .toggle_contents.toggle_color .toggle_title {
  color: #fff;
}
.page:not(.page-template-page_lp) article .toggle_contents h3, .single article .toggle_contents h3 {
  background-color: inherit;
  border-left: 0px;
}
.page:not(.page-template-page_lp) article .pageItem.list, .single article .pageItem.list {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  padding: 1em 2em;
  background: #F9F7F5;
  border-radius: 4px;
  margin: 1.5em 0;
}
.page:not(.page-template-page_lp) article .pageItem.list li ul, .single article .pageItem.list li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
.page:not(.page-template-page_lp) article .pageItem.list li + li, .single article .pageItem.list li + li {
  margin-top: 10px;
}
.page:not(.page-template-page_lp) article .pageItem.list.mark li, .single article .pageItem.list.mark li {
  position: relative;
  padding-left: 15px;
}
.page:not(.page-template-page_lp) article .pageItem.list.mark li:before, .single article .pageItem.list.mark li:before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #7A5C43;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li, .single article .pageItem.list.check li {
  position: relative;
  padding-left: 25px;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li:before, .single article .pageItem.list.check li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #7A5C43;
  border-bottom: 2px solid #7A5C43;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li:after, .single article .pageItem.list.check li:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #7A5C43;
  border-radius: 2px;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex, .single article .pageItem.list.flex {
  display: flex;
  gap: 0.5em 2em;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex li + li, .single article .pageItem.list.flex li + li {
  margin-top: 0px;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex.col2 li, .single article .pageItem.list.flex.col2 li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page:not(.page-template-page_lp) article .pageItem.list.flex.col2 li, .single article .pageItem.list.flex.col2 li {
    width: calc(50% - 1em);
  }
}
.page:not(.page-template-page_lp) article .pageItem.list.flex.col3 li, .single article .pageItem.list.flex.col3 li {
  width: calc(50% - 1em);
}
@media screen and (min-width: 1024px) {
  .page:not(.page-template-page_lp) article .pageItem.list.flex.col3 li, .single article .pageItem.list.flex.col3 li {
    width: calc(32.6% - 1em);
  }
}

/* コンテントボックス */
.page-Boxcontent {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #c4bbb0;
  padding: 1.5rem;
}
.page-Boxcontent .Boxcontent-inner .imgtxt-txt-mida {
  color: #7A5C43;
  display: inline-block;
  background: transparent;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  padding: 0;
  border-bottom: 0;
  border-left: 0;
}
.page-Boxcontent .Boxcontent-inner:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 1023px) {
  .page-Boxcontent .Boxcontent-inner img {
    float: none;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .page-Boxcontent .Boxcontent-inner img {
    margin-bottom: 0;
  }
}
.page-Boxcontent h4, .page-Boxcontent h3 {
  margin-top: 0 !important;
}

/*feature*/
.feature {
  margin-right: 1rem;
  background-color: #D6C6B3;
  color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 5px;
  font-size: 85%;
}

h3:has(.feature) {
  line-height: 1.8;
}

/* ボーダー */
.y_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #f4f27a;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.r_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #ffbebe;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.b_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #c5defc;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.single .entry-title {
  margin: 0em 0 1em 0;
  position: relative;
}
.single .entry-title.Bborder {
  color: #D6C6B3;
  border-bottom: 1px solid #D6C6B3;
  padding-bottom: 0.5em;
}
.single .entry-title.border {
  text-align: center;
}
.single .entry-title.border:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #D6C6B3;
  margin: 1em auto auto auto;
}
.single .entry-title.bgcolor {
  text-align: left;
  padding: 0.5em 1em;
  background-color: #B8A48A;
  margin: 0em 0 2em 0;
}
.single .entry-title.bgcolor:after {
  content: none;
}
.single .eyecatch {
  margin: auto auto 2em auto;
}
.single.single-news .eyecatch {
  display: none;
  margin: 0 auto;
}
.single .entry-meta {
  border-top: 1px dotted #c4bbb0;
  border-bottom: 1px dotted #c4bbb0;
  padding: 0.5em 0;
  display: flex;
  color: #666;
  font-size: 14px;
  justify-content: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .single .entry-meta {
    gap: 5px;
    flex-wrap: wrap;
  }
}
.single .entry-meta a {
  color: #666;
}
.single .entry-meta p {
  font-size: 14px;
  margin: 0;
}
.single .entry-footer {
  font-size: 14px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0.5em 0;
  justify-content: flex-end;
  color: #666;
}
.single .entry-footer a {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .single .entry-footer {
    gap: 5px;
  }
}

.single .nav-links {
  display: none;
}
@media screen and (min-width: 1024px) {
  .single .nav-links {
    display: flex;
    justify-content: space-between;
  }
}
.single .nav-links .nav-previous, .single .nav-links .nav-next {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .single .nav-links .nav-previous, .single .nav-links .nav-next {
    width: 40%;
  }
}
.single .nav-links .nav-previous a, .single .nav-links .nav-next a {
  flex-grow: 1;
}
.single .nav-links .nav-previous img, .single .nav-links .nav-next img {
  display: none;
  aspect-ratio: 3/2;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.single .nav-links .nav-previous {
  flex-direction: row-reverse;
}
.single .nav-links .nav-next a {
  text-align: right;
}
.single main .wp-post-image {
  margin-bottom: 1.5em;
}

.page-template-page_lp ul {
  list-style-type: none;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  .t-scroll {
    overflow-x: auto;
  }
  .t-scroll table {
    min-width: 600px;
    /*white-space: nowrap; */
  }
}

.y-scroll {
  margin: 2rem auto;
  overflow: auto;
}
.y-scroll table {
  margin: 0rem auto;
  min-width: 800px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .y-scroll {
    max-height: 500px;
  }
}

.r-tb {
  width: 100%;
}
.r-tb th {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .r-tb {
    width: 100%;
  }
  .r-tb th, .r-tb td {
    border-right: 0px solid;
    display: block;
    width: 100%;
    border-bottom: solid 1px #c4bbb0;
  }
  .r-tb td:last-child {
    border-bottom: solid 0px #c4bbb0;
  }
}

.eyecatch-container img {
  margin: auto;
}

.wp-caption {
  width: 100% !important;
}

/*関連リンク*/
.single article .page-linkBox {
  border: 1px solid #D6C6B3;
  margin: 4em 0;
  position: relative;
}
.single article .page-linkBox h4 {
  background: #D6C6B3;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: -30px;
  line-height: 1;
  margin: 0;
  padding: 6px 20px;
  border-bottom: 0px;
  left: -1px;
}
.single article .page-linkBox ul.pageItem.list.mark {
  margin: 0;
  padding: 1em;
  border-radius: 0px;
}

/* TOC */
#toc_container {
  margin: 20px auto 30px;
  background-color: rgba(184, 164, 138, 0.04);
  border: 3px solid rgba(184, 164, 138, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  padding: 24px 52px;
  display: table;
  min-width: 68%;
}

#toc_container ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#toc_container ul.toc_list li::before {
  content: none;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
  background: none;
  box-shadow: none;
}

/* 目次の見出しタイトル */
#toc_container .toc_title {
  text-align: center;
  font-weight: bold;
  font-size: 118%;
  padding: 0;
  margin: 0;
}

/* 見出しタイトル左のアイコン */
#toc_container .toc_title::before {
  position: relative;
  font-size: 28px;
  content: "≔";
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: baseline;
  speak: none;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #B8A48A;
}

/* 表示／非表示トグル */
#toc_container .toc_toggle a {
  font-size: 13px;
  font-weight: normal;
  padding: 2px 4px;
}

/* 目次エリア */
#toc_container p.toc_title + ul.toc_list {
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 目次のリストの共通スタイル */
#toc_container ul.toc_list li {
  padding: 0;
  margin: 0;
}

/* 目次のリンク */
#toc_container ul.toc_list li a {
  position: relative;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  margin: 2px 0;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* 目次のリンクカラー */
#toc_container ul.toc_list a,
#toc_container ul.toc_list a:visited {
  color: #3C2F25;
}

/* マウスオーバー時 */
#toc_container ul.toc_list a:hover {
  opacity: 0.88;
  text-decoration: none;
}

/* 親の目次 */
#toc_container ul.toc_list > li > a {
  font-size: 16px;
  font-weight: bold;
  margin-left: 40px;
  margin-bottom: 16px;
  margin-top: 16px;
}

/* 番号振り用のスタイル */
#toc_container .toc_number {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, "Meiryo", "Yu Gothic", san-serif;
  font-weight: 400;
  color: #fff;
  background-color: rgba(184, 164, 138, 0.8);
}

/* 親の目次の番号 */
#toc_container .toc_number.toc_depth_1 {
  position: absolute;
  top: 0;
  left: -40px;
  width: 32px;
  height: 32px;
  line-height: 32px;
}

/* 子の目次の番号 */
#toc_container .toc_number:not(.toc_depth_1) {
  line-height: 30px;
  padding: 0 5.43px;
}

/* 子の目次 */
#toc_container ul.toc_list > li > ul {
  margin-left: 40px;
}

/* レスポンシブ設定(667px幅以下) */
@media only screen and (max-width: 667px) {
  #toc_container {
    padding: 20px 3vw;
    min-width: auto;
    width: 100% !important;
  }
  #toc_container p.toc_title + ul.toc_list {
    padding: 20px 0 0;
  }
  #toc_container ul.toc_list > li > ul {
    margin-left: 30px;
  }
}
/*目次*/
.toc-wrap {
  display: none;
}

@media screen and (min-width: 1024px) {
  .toc-wrap {
    display: block;
    width: 250px;
    flex-shrink: 0;
  }
  #table-of-contents.sticky {
    position: sticky;
    top: 60px;
  }
  #table-of-contents ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  #table-of-contents ul li {
    margin-bottom: 15px;
  }
  #table-of-contents a {
    color: #666;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    height: 50px;
  }
  #table-of-contents a:before {
    position: absolute;
    left: 0px;
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #666;
    transition: all 0.5s;
    height: 50px;
  }
  #table-of-contents a.active, #table-of-contents a:hover {
    color: #D6C6B3;
    font-weight: 600;
    font-size: 120%;
  }
  #table-of-contents a.active:before, #table-of-contents a:hover:before {
    background-color: #D6C6B3;
  }
  .pagepost-wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
  }
  .post-wrap {
    flex-grow: 1;
  }
}
.summary-list {
  display: flex;
  gap: 24px;
}
.summary-list > a {
  flex-shrink: 0;
}
.summary-list header a {
  color: #D6C6B3;
}
.summary-list .eyecatch {
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .summary-list .eyecatch {
    width: 250px;
  }
}
@media screen and (max-width: 1023px) {
  .summary-list .entry-summary {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  article .wp-block-column figure.wp-block-image,
  article .wp-block-column .wp-block-image {
    margin-bottom: 0 !important;
  }
}

.type-news .summary-list {
  gap: 0;
}

/* post-nav */
.post-nav {
  display: flex;
  margin-top: 2em;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .post-nav {
    gap: 0px;
    flex-wrap: nowrap;
  }
}

a.nav-prev-link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  flex-basis: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #8A6A3E;
}
a.nav-prev-link picture, a.nav-prev-link img {
  flex-shrink: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  a.nav-prev-link {
    flex-basis: 50%;
  }
}

a.nav-next-link {
  display: flex;
  justify-content: flex-end;
  flex-basis: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #8A6A3E;
}
a.nav-next-link picture, a.nav-next-link img {
  flex-shrink: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  a.nav-next-link {
    flex-basis: 50%;
  }
}

a.nav-prev-link:hover, a.nav-next-link:hover {
  opacity: 0.7;
}

.nav-prev-image, .nav-next-image {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-prev-title, .nav-next-title {
  line-height: 1.6;
  padding: 0 1rem;
  font-size: 14px;
}

.nav-prev-title:before {
  content: "< 前の記事";
  display: block;
  font-size: 12px;
  color: #8A6A3E;
  background-color: #fff;
  border: 1px solid #8A6A3E;
  border-radius: 50px;
  text-align: center;
  padding: 6px 6px;
  margin-bottom: 14px;
  width: 80px;
  line-height: 1;
}

.nav-next-title:before {
  content: "次の記事 >";
  display: block;
  font-size: 12px;
  color: #8A6A3E;
  background-color: #fff;
  border: 1px solid #8A6A3E;
  border-radius: 50px;
  text-align: center;
  padding: 6px 6px;
  margin-bottom: 14px;
  width: 80px;
  line-height: 1;
  margin-left: auto;
}

.single-news .post-nav picture {
  display: none;
}
.single-news .post-nav .nav-prev-title {
  padding: 0 2rem 0 0;
}
.single-news .post-nav .nav-next-title {
  padding: 0 0 0 2rem;
}

.entry-summary p {
  font-size: 14px;
  margin-bottom: 0;
}

.news-template-default .post-nav img {
  display: none;
}

/* sitemap */
@media screen and (min-width: 1024px) {
  .sitemap-wrap {
    display: flex;
    gap: 60px;
  }
}
.sitemap-wrap .wp-block-group ul {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  margin: 1.5em 0;
}
.sitemap-wrap .wp-block-group ul li {
  position: relative;
  padding-left: 15px;
}
.sitemap-wrap .wp-block-group ul li:before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #D6C6B3;
}
.sitemap-wrap .wp-block-group ul li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
.sitemap-wrap .wp-block-group ul li + li {
  margin-top: 10px;
}

.simple-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.simple-ul li {
  border-bottom: 1px dotted #c4bbb0;
  padding: 0.5rem 0;
}
.simple-ul li .kei {
  margin-right: clamp(20px, 11.176px + 1.838vw, 30px);
}

ol.wp-block-list li, ul.wp-block-list li {
  line-height: 2;
  /*  margin-bottom: 16px; */
}

/*記事部分マックス幅調整*/
.single:not(.treatment-template-default) article {
  max-width: 960px;
  margin-inline: auto;
}

figure.wp-block-embed.is-type-video {
  max-width: 700px;
  margin-inline: auto;
}

/* treatment */
.wp-block-group.cat-tag {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.smb-spider-contents-slider__item {
  width: 100%;
}

.single-treatment .smb-spider-slider {
  width: 100%;
  margin-inline: auto;
}
.single-treatment .smb-spider-slider .spider {
  background-color: #fff;
  padding: 24px 24px;
}
@media screen and (min-width: 768px) {
  .single-treatment .smb-spider-slider .spider {
    max-width: 800px;
    padding: 24px 40px;
    margin-inline: auto;
  }
}
.single-treatment .smb-spider-slider .spider [data-content-position] {
  align-content: flex-start;
}
.single-treatment .smb-spider-slider .wp-block-image {
  max-width: clamp(250px, 205.882px + 9.191vw, 300px);
  margin-inline: auto;
  margin-bottom: 0px !important;
}
.single-treatment .smb-spider-slider .wp-block-flexible-table-block-table {
  margin-inline: auto;
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
}
.single-treatment .smb-spider-slider .wp-block-flexible-table-block-table table tr th {
  background-color: #F7F4F1;
}
.single-treatment .smb-spider-slider .treatment-case-box ul {
  margin: 0.5rem 0;
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
}
.single-treatment .smb-spider-slider .treatment-case-box p {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  line-height: 2;
}

.spider__arrow[data-direction=prev]:before {
  border-bottom: 2px solid #9C7C4A;
  border-left: 2px solid #9C7C4A;
  height: 25px;
  width: 25px;
}

.spider__arrow[data-direction=next]:before {
  border-top: 2px solid #9C7C4A;
  border-right: 2px solid #9C7C4A;
  height: 25px;
  width: 25px;
}

.insta-link a {
  position: relative;
  padding-left: 28px;
}
.insta-link a:before {
  content: "";
  background-image: url(../images/icon/icon-instagram-bk.svg);
  display: block;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 0px;
}

.related-treatments {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  .related-treatments {
    margin-top: 3em;
  }
}

.related-treatments__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .related-treatments__list {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.treatment-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  background: #F7F4F1;
  border-radius: 5px;
  border: 1px solid #8A6A3E;
  padding: 0rem;
  color: #3C2F25;
  position: relative;
  padding-right: 18px;
}
.treatment-card:after {
  content: "";
  background-image: url(../images/icon/arrow-down.svg);
  display: block;
  width: 12px;
  height: 12px;
  background-size: cover;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: top;
}

.treatment-card:hover {
  background: #e7e3df;
}

.treatment-card__thumb {
  width: clamp(50px, 41.176px + 1.838vw, 60px);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.treatment-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0px;
}

.treatment-card__title {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  line-height: 1.4;
  margin-left: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/**/
.fig_Wrap {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: url(../images/fig_injection01.jpeg) no-repeat;
  background-size: 100%;
}

.fig_Wrap.bot {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background: url(../images/fig_injection02.jpeg) no-repeat;
  background-size: 100%;
}

.fig01 ul li {
  list-style: none !important;
}

h4.sp-tab__tab_title {
  border-bottom: 0px solid #ccc !important;
  padding-bottom: 0 !important;
}

.smb-tabs__body table {
  margin: 0;
}

/* linkcard */
.linkcard {
  word-wrap: break-word;
  margin: 15px 0 2em;
  padding: 20px 20px 15px;
  border: 1px solid #c4bbb0;
  border-radius: 5px;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .linkcard {
    padding: 8px 8px;
  }
}
.linkcard a {
  display: flex;
  gap: 24px;
  align-items: center;
}
.linkcard .txt {
  flex-grow: 1;
}

.linkcard .thumb {
  flex-shrink: 0;
}
.linkcard .thumb img {
  width: clamp(70px, 25.882px + 9.191vw, 120px);
  height: clamp(70px, 25.882px + 9.191vw, 120px);
  -o-object-fit: cover;
  object-fit: cover;
}

.linkcard p.cexcerpt {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  color: #96908c;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .linkcard p.cexcerpt {
    display: block;
  }
}

.linkcard .ctitle {
  font-size: clamp(16px, 14.235px + 0.368vw, 18px);
  line-height: 1.7;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .linkcard .ctitle {
    margin-bottom: 0;
  }
}

/****** column用　旧サイトスタイル ******/
.q_button_wrap {
  text-align: center;
  margin: 2em auto;
}

.q_custom_button {
  max-width: 100%;
  line-height: 1.5;
  padding: 0 1.5em;
  display: inline-flex;
  -ms-justify-content: center;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  z-index: 1;
  color: #fff;
  border-width: 1px;
  border-style: solid;
  text-decoration: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  transition: 0.5s;
}

.q_custom_button1 {
  width: 280px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  color: #937960 !important;
  border-color: #937960;
}

.q_custom_button:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  z-index: -1;
  transition-property: background-color, left, opacity;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.q_custom_button1:before {
  background-color: #7c6552;
  opacity: 0;
}

.q_custom_button1:hover {
  color: #fff !important;
  border-color: #7c6552;
  background-color: #7c6552;
}

.q_custom_button2 {
  width: 280px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
  color: #fff !important;
  border-color: #937960;
}

.q_custom_button2:before {
  background-color: #937960;
  opacity: 1;
}

.q_custom_button2:hover:before {
  background-color: #937960;
  opacity: 0;
}

.q_custom_button:hover {
  color: #fff;
  text-decoration: none !important;
}

.q_custom_button2:hover {
  color: #7c6552 !important;
  border-color: #7c6552;
}

.q_frame {
  line-height: 1.8;
  position: relative;
  padding: 1.3em 2em;
  margin-bottom: 2em;
  border: 1px solid #ddd;
}

.q_frame3 {
  background: #fff;
  border-radius: 10px;
  border-width: 1px;
  border-color: #f9b42d;
  border-style: solid;
}

.q_frame_label {
  max-width: calc(100% - 2em);
  line-height: 1.4;
  font-weight: 600;
  display: inline-block;
  padding: 0 1em;
  background: inherit;
  position: absolute;
  top: -0.7em;
  left: 1em;
}

.q_frame3 .q_frame_label {
  color: #f9b42d;
}

.q_frame2 {
  background: #fff;
  border-radius: 0;
  border-width: 1px;
  border-color: #009aff;
  border-style: solid;
}

.q_frame2 .q_frame_label {
  color: #009aff;
}

.q_underline {
  background-image: linear-gradient(to right, transparent 50%, #fff799 50%);
  background-position: 0 0.8em;
  background-repeat: repeat-x;
  background-size: 200% 0.5em;
  border: none;
  border-bottom-color: transparent;
  transition: background 2s ease;
}

.q_underline1 {
  font-weight: 400;
  background-image: linear-gradient(to right, transparent 50%, #fff799 50%);
  background-position: -100% 0.8em;
}

.q_underline.is-active {
  background-position: -100% 0.8em;
}

.page_catch {
  position: relative;
  color: #9C7C4A;
  font-size: clamp(22.13px, 13.421px + 1.814vw, 32px);
  padding-bottom: 1rem !important;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .page_catch {
    padding-left: 0;
  }
}
.page_catch::after {
  content: "";
  display: block;
  background-color: #9C7C4A;
  width: 60px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .page_catch {
    text-align: center;
  }
  .page_catch::after {
    content: "";
    display: block;
    background-color: #9C7C4A;
    width: 100px;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
}

.t-page_catch {
  text-align: center !important;
  position: relative;
  color: #9C7C4A;
  font-size: clamp(22.13px, 13.421px + 1.814vw, 32px);
  padding-bottom: 1rem !important;
  text-align: left;
}
.t-page_catch::after {
  content: "";
  display: block;
  background-color: #9C7C4A;
  width: 100px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.case-mida {
  position: relative;
  color: #9C7C4A;
  font-size: clamp(30px, 21.176px + 1.838vw, 40px);
  padding-bottom: 1rem !important;
  text-align: center;
}
.case-mida::after {
  content: "";
  display: block;
  background-color: #9C7C4A;
  width: 60px;
  height: 2px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.page_catch_p {
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  font-size: clamp(18px, 18px + 0vw, 18px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .page_catch_p {
    text-align: center;
  }
}

.device_detail {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px !important;
  flex-wrap: wrap;
}
.device_detail li {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  border: 1px solid #9C7C4A;
  border-radius: 4px;
  color: #9C7C4A;
  padding: 4px 4px;
  width: calc(33.3333333333% - 5.3333333333px);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .device_detail li {
    width: calc(25% - 6px);
  }
}

.related-treatments .related-title, .related-cases .related-title {
  font-size: clamp(20px, 16.471px + 0.735vw, 24px);
  border-bottom: 1px solid #c4bbb0;
  padding-bottom: 4px !important;
  color: #7A5C43;
  margin-bottom: 24px;
}

.related-columns {
  margin-top: clamp(60px, 7.059px + 11.029vw, 120px);
}
.related-columns .related-title {
  font-size: clamp(20px, 16.471px + 0.735vw, 24px);
  border-bottom: 1px solid #c4bbb0;
  padding-bottom: 4px;
  color: #7A5C43;
  padding-left: 0;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 16px;
  }
}
.related-columns .related-columns__list .wp-post-image {
  margin-bottom: 0;
}
.related-columns .related-columns__list a {
  margin-bottom: 20px;
  color: #3C2F25;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list a {
    border: 1px solid #8A6A3E;
    margin-bottom: 0;
  }
}
.related-columns .related-columns__list .column-card {
  display: flex;
  gap: 16px;
  opacity: 1;
  transition: 0.5s;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list .column-card {
    display: block;
  }
}
.related-columns .related-columns__list .column-card:hover {
  opacity: 0.7;
}
.related-columns .related-columns__list .column-card__title {
  color: #7A5C43;
}
.related-columns .related-columns__list .column-card__thumb {
  flex-shrink: 0;
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list .column-card__thumb {
    width: 100%;
  }
}
.related-columns .related-columns__list .column-card__thumb img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list .column-card__thumb img {
    height: 186px;
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list .column-card__body {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 4rem 1rem 1rem 1rem;
    background: linear-gradient(rgba(0, 0, 0, 0) 0, rgba(93, 81, 70, 0.9) 60%);
  }
}
.related-columns .related-columns__list .column-card__body .column-card__title {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  font-size: clamp(14px, 14px + 0vw, 14px);
  margin-bottom: 0;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .related-columns .related-columns__list .column-card__body .column-card__title {
    color: #fff;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

.smb-step__item__number {
  background-color: #8A6A3E;
}

.meta-labels {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.cat-label,
.tag-label {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  padding: 0.6em 0.8em;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.2s;
  margin-right: 5px;
  margin-bottom: 5px;
}

.cat-links, .tag-links {
  margin-top: 8px;
}

.cat-label {
  background-color: #B8A48A;
  color: #fff;
  transition: 0.5s;
}

.cat-label:hover {
  background-color: #a8957d;
  color: #fff;
}

.tag-label {
  background-color: #F9F7F5;
  transition: 0.5s;
}

.tag-label:hover {
  background-color: #dfd9d4;
}

/* SPだけタグを横スクロールにする */
@media screen and (max-width: 767px) {
  /* 親が突き抜けないように */
  .meta-labels {
    overflow: hidden;
    margin-bottom: 8px;
  }
  /* タグ部を横スクロール化 */
  .tag-links {
    display: block;
    width: 100%;
    overflow-x: auto; /* 横スクロール */
    -webkit-overflow-scrolling: touch;
    white-space: nowrap; /* 折り返さない */
    padding-bottom: 4px;
  }
  .tag-links::-webkit-scrollbar {
    display: none;
  }
  .tag-links .tag-label {
    display: inline-block; /* 1つずつ横に並べる */
    white-space: nowrap;
    flex: none; /* 念のため */
    font-size: 12px;
    padding: 8px 8px;
    margin-right: 5px; /* gap代わり */
  }
}
.case-slide h3 {
  font-size: clamp(20px, 16.471px + 0.735vw, 24px);
  margin-top: 0 !important;
  border-bottom: 1px solid #c4bbb0;
  padding-bottom: 8px;
}
.case-slide .treatment-case-box {
  font-size: 14px;
}

.smb-accordion__item__title {
  background-color: #f6f6f6;
  border: 1px solid #c3baaf;
  padding: 12px 16px;
}

@media screen and (max-width: 1023px) {
  .spider__dots {
    display: none;
  }
}
.smb-spider-contents-slider .wp-block-image {
  margin-bottom: 0 !important;
}

.smb-spider-contents-slider figure a, a.glb {
  position: relative;
  display: inline-block;
}

.smb-spider-contents-slider figure a::after, a.glb::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  width: 2.2rem;
  height: 2.2rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 5 1.5-1.5-5-5Zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 5 1.5-1.5-5-5Zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14Z'/%3E%3C/svg%3E") center/contain no-repeat;
  border-radius: 9999px;
  pointer-events: none;
}

.smb-spider-contents-slider figure a:hover::after, a.glb:hover::after {
  background: rgb(255, 255, 255);
}

.case-template-default .spider__arrow[data-direction=prev]:before {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  left: calc(50% - 12.5px);
  top: calc(50% - 12.5px);
}

.case-template-default .spider__arrow[data-direction=next]:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: calc(50% - 12.5px);
  top: calc(50% - 12.5px);
}

@media screen and (min-width: 1024px) {
  .related-cases .related-cases__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.related-cases .case-card {
  display: flex;
  background-color: #F9F7F5;
  border: 1px solid #E4DED7;
  border-radius: 5px;
  padding: 16px;
  margin-bottom: 16px;
  gap: 14px;
}
@media screen and (min-width: 1024px) {
  .related-cases .case-card {
    flex-direction: column;
  }
}
.related-cases .case-card .case-card__thumb {
  flex-shrink: 0;
}
.related-cases .case-card .case-card__thumb img {
  width: 126px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .related-cases .case-card .case-card__thumb img {
    width: 100%;
  }
}
.related-cases .case-card .case-card__title {
  color: #3C2F25;
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 6px;
  margin-bottom: 0;
}
.related-cases .case-card .case-card__cat {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  background-color: #B49F85;
  color: #fff;
  padding: 4px 10px;
}

@media screen and (min-width: 768px) {
  article #menu-sitemap,
  .sitemap-menu {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (min-width: 1024px) {
  article #menu-sitemap,
  .sitemap-menu {
    -moz-column-count: 3;
         column-count: 3;
  }
}

/* sidebanner2 */
.sideban2 {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.sideban2 img {
  width: 20px;
}
@media screen and (max-width: 1023px) {
  .sideban2 {
    bottom: -120px;
    transition: 0.5s ease-in;
  }
  .sideban2.scroll-in {
    bottom: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 {
    bottom: auto;
    left: auto;
    top: 20%;
    right: -106px;
    width: 90px;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 8px;
    transition: 0.5s ease-in;
  }
  .sideban2.scroll-in {
    right: 16px;
  }
}
.sideban2 a {
  color: #fff;
  padding: 8px 0;
  line-height: 1.5;
  aspect-ratio: 1.1/1;
  max-height: 90px;
}
@media screen and (min-width: 768px) {
  .sideban2 a {
    aspect-ratio: 4/2;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 a {
    padding: 10px;
    align-items: center;
    border-radius: 5px;
    aspect-ratio: 1/1;
  }
}
.sideban2 a.sideban-tel {
  width: 25%;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  gap: 8px;
  background-color: #918577;
  flex-direction: column;
  align-items: center;
}
.sideban2 a.sideban-tel img {
  width: 29px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel {
    width: 100%;
    gap: 5px;
  }
}
.sideban2 a.sideban-web {
  width: 25%;
  font-size: 14px;
  display: flex;
  justify-content: center;
  gap: 5px;
  font-weight: bold;
  background-color: #F7F4F1;
  flex-direction: column;
  border: 1px solid #E4DED7;
  color: #7A5C43;
  align-items: center;
}
.sideban2 a.sideban-web img {
  width: 33px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-web {
    width: 100%;
  }
  .sideban2 a.sideban-web:hover {
    background-color: rgb(241.4363636364, 236.35, 231.2636363636);
  }
}
.sideban2 a.sideban-line {
  width: 25%;
  display: flex;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: bold;
  background-color: #00B915;
  flex-direction: column;
  align-items: center;
}
.sideban2 a.sideban-line img {
  width: 32px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-line {
    width: 100%;
  }
  .sideban2 a.sideban-line:hover {
    background-color: rgb(0, 134, 15.2108108108);
  }
}
.sideban2 a.sideban-access {
  width: 25%;
  display: flex;
  justify-content: center;
  gap: 2px;
  font-size: 14px;
  align-items: center;
  font-weight: bold;
  flex-direction: column;
  background-color: #D6C6B3;
  color: #3C2F25;
}
.sideban2 a.sideban-access img {
  width: 19px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-access {
    width: 100%;
  }
  .sideban2 a.sideban-access:hover {
    background-color: rgb(196.1282051282, 173.1538461538, 145.8717948718);
  }
}

/* 共通 */
.post-list-cat {
  margin: 0.5em 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.post-list-cat > li a {
  font-size: clamp(12px, 12px + 0vw, 12px);
  padding: 2px 10px;
  color: #fff;
  background-color: #D6C6B3;
}

.post-list-img-wrap {
  overflow: hidden;
}

.post-list-img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.post-list-img:hover {
  transform: scale(1.1);
}

.post-list-card .time, .post-list-card2 .time, .post-list-card3 .time, .post-list .time {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  color: #333333;
  text-align: right;
}
.post-list-card h3, .post-list-card2 h3, .post-list-card3 h3, .post-list h3 {
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  margin-bottom: 0.5em;
  overflow: hidden;
}
.post-list-card a, .post-list-card2 a, .post-list-card3 a, .post-list a {
  text-decoration: none;
}

.post-list {
  margin: 0 auto 0em auto;
}
.post-list > li {
  display: flex;
  gap: 30px;
  padding: 1.5em 0;
}
.post-list > li:not(:last-child) {
  border-bottom: 1px dotted #c4bbb0;
}
@media screen and (max-width: 767px) {
  .post-list > li {
    /* flex-direction: column;*/
    gap: 0px;
    padding: 1em 0;
  }
}
.post-list > li .post-list-cat {
  flex-shrink: 0;
  margin: 0;
}
.post-list > li h3 {
  font-size: 16px;
  font-weight: normal;
  margin: 0.5em 0 0 0;
  line-height: 1.8;
}
.post-list > li .time {
  letter-spacing: 2px;
  font-size: clamp(16px, 16px + 0vw, 16px);
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  flex-shrink: 0;
  text-align: left;
}

/* タイトルを左にしたい場合*/
.post-list-wrap h2 {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .post-list-wrap {
    display: flex;
    gap: 100px;
  }
  .post-list-wrap .post-list {
    /*flex-basis: fit-content;*/
    width: 60%;
  }
  .post-list-wrap .post-list-title {
    width: 40%;
  }
}

.eyecatch {
  /*  aspect-ratio: 3/2;
      object-fit: cover; */
  margin: auto;
}

.entry-meta time.entry-date {
  /* color: #9B9B9B; */
}

/* ポスト一覧カテゴリ表示 */
.entry-categories ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  /*  justify-content: flex-end; */
}
.entry-categories ul li a {
  background-color: #B49F85;
  color: #fff;
  line-height: 1;
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .column-cat-list {
    margin-bottom: 2rem;
  }
  .toggle_title.column-cat {
    background-color: #fff;
    border: 1px solid #9C7C4A;
    border-radius: 5px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #9C7C4A;
    padding: 8px 12px;
  }
  .toggle_title.column-cat:not(.col-key) {
    background-color: #F9F7F5;
  }
}
@media screen and (min-width: 768px) {
  .toggle_title.column-cat {
    font-size: 20.74px;
    text-align: center;
    color: #9C7C4A;
    margin-bottom: 10px;
  }
  .catblock {
    border: 1px solid #B8A48A;
    background-color: #F9F7F5;
    border-radius: 5px;
    padding: 16px 16px 8px 16px;
    margin-bottom: 16px;
  }
  .tagblock {
    border: 1px solid #B8A48A;
    background-color: #ffffff;
    border-radius: 5px;
    padding: 16px 16px 8px 16px;
    margin-bottom: 60px;
  }
}
.tax-treatment_category .tr-card-grid, .tax-treatment-tag .tr-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px 16px;
}
.tax-treatment_category .tr-card-grid a, .tax-treatment-tag .tr-card-grid a {
  display: flex;
  padding: 10px 35px 10px 10px;
  gap: 16px;
  position: relative;
  border: 1px solid #E1D9D2;
  box-shadow: 0 0 6px #e7e7e7;
  border-radius: 5px;
  align-items: center;
}
.tax-treatment_category .tr-card-grid a .card__thumb, .tax-treatment-tag .tr-card-grid a .card__thumb {
  flex-shrink: 0;
}
.tax-treatment_category .tr-card-grid a img, .tax-treatment-tag .tr-card-grid a img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .tax-treatment_category .tr-card-grid a img, .tax-treatment-tag .tr-card-grid a img {
    width: 112px;
  }
}
.tax-treatment_category .tr-card-grid a h2, .tax-treatment-tag .tr-card-grid a h2 {
  font-size: clamp(16px, 14.235px + 0.368vw, 18px) !important;
  margin-inline: inherit;
}
.tax-treatment_category .tr-card-grid a:after, .tax-treatment-tag .tr-card-grid a:after {
  content: "";
  background-image: url(../images/icon/arrow-down-br.svg);
  width: 11px;
  height: 21px;
  background-size: cover;
  display: block;
  position: absolute;
  right: 14px;
  transition: all 0.3s ease;
}
.tax-treatment_category .tr-card-grid a:hover, .tax-treatment-tag .tr-card-grid a:hover {
  background-color: #F9F5EF;
}
.tax-treatment_category .tr-card-grid a:hover:after, .tax-treatment-tag .tr-card-grid a:hover:after {
  right: 10px;
}

.case-card-list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .case-card-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 32px;
  }
}
.case-card-list article {
  background-color: #F9F7F5;
  border: 1px solid #E4DED7;
  margin-bottom: 20px;
  border-radius: 5px;
  position: relative;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .case-card-list article {
    margin-bottom: 0px;
    flex-direction: column;
    padding-bottom: 56px;
    padding-top: 22px;
    padding-left: 22px;
    padding-right: 22px;
  }
}
.case-card-list article a.case-card__link {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  .case-card-list article a.case-card__link figure.case-card__thumb {
    padding-left: 12px;
    padding-top: 12px;
  }
}
.case-card-list article a.case-card__link img {
  flex-shrink: 0;
  aspect-ratio: 3/2;
  width: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .case-card-list article a.case-card__link img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .case-card-list article figure.case-card__thumb {
    width: 100%;
  }
}
.case-card-list article span.case-card__more {
  width: 100%;
  background-color: #E1D9D2;
  position: relative;
  color: #3C2F25;
  text-align: center;
  padding: 4px;
}
@media screen and (min-width: 768px) {
  .case-card-list article span.case-card__more {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.case-card-list article span.case-card__more:after {
  content: "";
  background-image: url(../images/icon/arrow-down-br.svg);
  width: 11px;
  height: 21px;
  background-size: cover;
  display: block;
  position: absolute;
  right: 14px;
  top: 7px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .case-card-list article .case-card__body {
    width: calc(100% - 146px);
    padding-right: 12px;
    padding-top: 12px;
  }
}
.case-card-list article .case-card__body .case-card__cat {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  background-color: #B49F85;
  color: #fff;
  padding: 4px 10px;
}
@media screen and (min-width: 768px) {
  .case-card-list article .case-card__body .case-card__cat {
    margin-top: 16px;
  }
}
.case-card-list article h2 {
  margin-bottom: 0;
  padding: 0;
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #3C2F25;
  margin-top: 8px;
}
.case-card-list article:hover span.case-card__more {
  background-color: rgb(208.68, 196.328, 185.52);
}
.case-card-list article:hover span.case-card__more:after {
  right: 10px;
}

.contact-item-wrap {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contact-item-wrap {
    gap: 10px;
    flex-direction: column;
  }
}
.contact-item-wrap .contact-item-th .small {
  font-size: 0.8em;
  font-weight: normal;
  display: block;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact-item-wrap .contact-item-th {
    width: 200px;
  }
}
.contact-item-wrap .contact-item-th .red {
  font-size: 14px;
  font-weight: normal;
  color: red;
}
.contact-item-wrap .contact-item-th .form_en {
  font-size: 14px;
  font-weight: normal;
  color: #D6C6B3;
  display: block;
}
.contact-item-wrap .contact-item-td {
  flex-grow: 1;
}
.contact-item-wrap .contact-item-td p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.contact-item-wrap textarea,
.contact-item-wrap select,
.contact-item-wrap input[type=tel],
.contact-item-wrap input[type=email],
.contact-item-wrap input[type=text],
.contact-item-wrap input[type=button],
.contact-item-wrap input[type=reset],
.contact-item-wrap input[type=search],
.contact-item-wrap input[type=password] {
  width: 100%;
}

.contact-submit-wrap {
  text-align: center;
}

.submit-wrap {
  text-align: center;
  position: relative;
}
.submit-wrap p {
  margin-bottom: 0;
}
.submit-wrap .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 60px;
  margin: 0;
  display: block;
}

.contact-btn {
  text-align: center;
  margin-top: 2em;
}

.show-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .show-pc {
    display: block;
  }
}

.show-sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .show-sp {
    display: none;
  }
}

.content {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .content {
    padding: 0 24px;
  }
}
.content > h2 {
  padding-left: 0;
  padding-right: 0;
}

.radius {
  border-radius: 10px;
}

.mt-m, .mt40 {
  margin-top: clamp(80px, 44.706px + 7.353vw, 120px);
}

.mb-m, .mb40 {
  margin-bottom: clamp(80px, 44.706px + 7.353vw, 120px);
}

.mb-s {
  margin-bottom: clamp(32px, 3.765px + 5.882vw, 64px);
}

.mt-s {
  margin-top: clamp(32px, 3.765px + 5.882vw, 64px);
}

.pt-m {
  padding-top: clamp(80px, 44.706px + 7.353vw, 120px);
}

.pb-m {
  padding-bottom: clamp(80px, 44.706px + 7.353vw, 120px);
}

.txtbr {
  display: inline-block;
}

#fv_outer {
  padding-top: 80px;
  background-color: #EDEAE5;
}
@media screen and (max-width: 767px) {
  #fv_outer {
    padding-top: 60px;
    background-image: url("../images/toppage/fv-img-sp.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #fv_outer {
    padding-top: 60px;
    background-image: url("../images/toppage/fv-img-sp.webp");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
  }
}

.fv-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.fv-txt-wrap {
  max-width: 1440px;
  margin: 0 auto;
  height: calc(100vh - 108px);
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .fv-txt-wrap {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-txt-wrap {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .fv-txt-wrap {
    height: calc(100vh - 80px);
    background-image: url("../images/toppage/fv-img-pc.webp");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
  }
}

.fv-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv-content {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .fv-content {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 80%);
    padding: 1rem;
    border-radius: 8px;
  }
}

/* --- アニメーションの初期状態 --- */
.fv-sub,
.fv-main {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease, transform 1.5s ease-out;
  will-change: opacity, transform;
}

.mask-path {
  --path-length: 5000px;
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
}

/* --- アニメーション発火状態 (.is-active) --- */
.fv-section.is-active .fv-sub {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
  line-height: 1;
}
.fv-section.is-active .fv-main {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
  line-height: 1;
}
.fv-section.is-active .mask-path {
  animation: drawLine 2.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 1.4s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}
.fv-sub {
  font-size: clamp(21px, 12.176px + 1.838vw, 31px);
  letter-spacing: 0.05em;
  color: #8F7656;
}
@media screen and (max-width: 1023px) {
  .fv-sub {
    text-align: center;
  }
}

.fv-main {
  font-size: clamp(47px, 28.471px + 3.86vw, 68px);
  letter-spacing: 0.1em;
  color: #7A5C43;
}
@media screen and (max-width: 1023px) {
  .fv-main {
    text-align: center;
  }
}

.fv-section.is-active .svg-love-myself {
  opacity: 1 !important;
}

.fv-svg-wrap {
  position: absolute;
  top: 50%;
  left: 27%;
  width: 110%;
  max-width: 500px;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv-svg-wrap {
    top: 60%;
    left: 27%;
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  .fv-svg-wrap {
    top: 60%;
    left: 27%;
    width: 80%;
  }
}

.svg-love-myself {
  width: 100%;
  height: auto;
  display: block;
}

/* ボケを閉じ込めるコンテナ */
.bokeh-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

/* ボケの共通スタイル */
.bokeh {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  mix-blend-mode: overlay;
  opacity: 0;
}
.fv-section.is-active .bokeh {
  animation: floatBokeh 15s infinite linear;
  transition: opacity 3s ease 3s;
  opacity: 1;
}

.b1 {
  width: 50vw;
  height: 50vw;
  top: -10%;
  left: -10%;
  animation-duration: 25s !important;
}
@media screen and (max-width: 1023px) {
  .b1 {
    width: 90vw;
    height: 90vw;
    top: -10%;
    left: -15%;
  }
}

.b2 {
  width: 20vw;
  height: 20vw;
  bottom: 10%;
  right: -5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  animation-delay: -5s !important; /* 開始時間をずらす */
  animation-duration: 18s !important;
}
@media screen and (max-width: 1023px) {
  .b2 {
    display: none;
  }
}

/* ふわふわ動くアニメーション */
@keyframes floatBokeh {
  0% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
#top-intro p {
  font-size: clamp(14px, 10.471px + 0.735vw, 18px);
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  line-height: 1.8;
}
#top-intro h2 {
  font-size: clamp(19px, 3.118px + 3.309vw, 37px);
  padding: 0;
}
#top-intro h2 span {
  color: #9C7C4A;
}
@media screen and (max-width: 767px) {
  #top-intro h2 {
    font-size: 4.3vw;
  }
}
#top-intro .intro-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  #top-intro {
    /* 下にいくほど白くフェードさせる */
  }
  #top-intro .intro {
    position: relative;
  }
  #top-intro .intro-txt {
    max-height: 12em;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
  }
  #top-intro .intro-txt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8em;
    background: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  #top-intro .intro-txt.is-open {
    max-height: 200em;
  }
  #top-intro .intro-txt.is-open::after {
    opacity: 0;
  }
  #top-intro .intro-toggle {
    display: block;
    margin: 0px auto 0;
    padding: 0px 24px 24px 24px;
    background: #ffffff;
    font-size: 24px;
    letter-spacing: 0.05em;
    color: #8A6A3E;
  }
}
#top-intro .content {
  position: relative;
}
#top-intro .content .intro-txt-wrap {
  display: flex;
}
#top-intro .content .intro-txt-wrap .intro-txt-img {
  position: relative;
}
@media screen and (max-width: 767px) {
  #top-intro .content .intro-txt-wrap .intro-txt-img {
    max-width: 400px;
    margin-inline: auto;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  #top-intro .content .intro-txt-wrap {
    flex-direction: column;
  }
  #top-intro .content .intro-txt-wrap .type-sign {
    position: absolute;
    right: 0px;
    bottom: -24px;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  #top-intro .content .intro-txt-wrap {
    gap: 40px;
  }
  #top-intro .content .intro-txt-wrap .message-img {
    width: 300px;
    position: relative;
    flex-shrink: 0;
  }
  #top-intro .content .intro-txt-wrap .message-img .type-sign {
    position: absolute;
    right: 0px;
    bottom: -24px;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  #top-intro .content .intro-txt-wrap {
    gap: 100px;
  }
  #top-intro .content .intro-txt-wrap .message-img {
    width: 414px;
  }
}
#top-intro .content .type-sign {
  position: absolute;
  right: 0px;
  bottom: -24px;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #top-intro .content {
    gap: 40px;
  }
  #top-intro .content .message-img {
    width: 200px;
    position: relative;
    flex-shrink: 0;
  }
  #top-intro .content .message-img .type-sign {
    position: absolute;
    right: 0px;
    bottom: -24px;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  #top-intro .content {
    gap: 100px;
  }
  #top-intro .content .message-img {
    width: 414px;
  }
}
#top-intro .link-box-center {
  margin-top: clamp(40px, 22.353px + 3.676vw, 60px);
}

#treatment-menu {
  background-color: #F7F4F1;
}

#case {
  /* --- ベースレイアウト --- */
  /* --- テキスト周り --- */
  /* 矢印の位置調整 */
}
#case .case-swiper {
  position: relative;
}
#case .post-list-box {
  width: 100%;
  /* カードのデザイン調整 */
}
#case .catch-img {
  overflow: hidden;
  width: 100%;
}
#case .catch-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2; /* 画像比率を固定（例） */
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 1024px) {
  #case .catch-img img:hover {
    transform: scale(1.1);
  }
}
#case .case-label {
  display: inline-block;
  background-color: #E1D9D2;
  color: #3C2F25;
  font-size: 12px;
  padding: 4px 10px;
  margin-top: 10px;
  margin-bottom: 5px;
}
#case h3 {
  font-size: 16px;
  line-height: 1.6;
  color: #3C2F25;
  margin-top: 5px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}
#case .case-swiper-wrap {
  position: relative;
  margin-bottom: 40px;
}
#case .case-swiper-button-next,
#case .case-swiper-button-prev {
  position: absolute;
  background-color: #918577;
  width: 50px;
  height: 50px;
  top: 32%;
  z-index: 2;
}
#case .case-swiper-button-next::after,
#case .case-swiper-button-prev::after {
  content: "";
  color: #fff;
  font-size: 16px;
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
}
#case .case-swiper-button-prev::after {
  background-image: url(../images/icon/arrow-down-wt.svg);
  background-size: contain;
  transform: rotate(90deg);
}
#case .case-swiper-button-next::after {
  background-image: url(../images/icon/arrow-down-wt.svg);
  background-size: contain;
  transform: rotate(-90deg);
}
#case .swiper-button-disabled {
  opacity: 0.5;
}
#case .case-swiper-button-prev {
  left: -10px;
}
#case .case-swiper-button-next {
  right: -10px;
}
@media screen and (min-width: 1024px) {
  #case .case-swiper-button-next,
  #case .case-swiper-button-prev {
    display: none;
  }
}

#revision {
  background-image: url(../images/toppage/bgsp2.webp);
  background-size: cover;
  background-position: top center;
  padding: 54px 0;
}
@media screen and (min-width: 1024px) {
  #revision {
    background: #a28c74 url(../images/toppage/bgpc2.webp);
    background-repeat: no-repeat;
    background-position: 65% center;
    padding: 100px 0;
  }
}
#revision .revision-inner {
  width: 58%;
  margin-left: auto;
  color: #fff;
}
@media screen and (min-width: 1024px) and (max-width: 1150px) {
  #revision .revision-inner {
    width: 70%;
  }
}
@media screen and (max-width: 1023px) {
  #revision .revision-inner {
    width: 100%;
  }
}
#revision .revision-title-sub {
  font-size: clamp(20px, 14.706px + 1.103vw, 26px);
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 0;
}
#revision h2 {
  font-size: clamp(26px, 16.294px + 2.022vw, 37px);
  padding: 0 0 2rem 0;
  border-bottom: 1px solid #BFAE9A;
  text-align: center;
}
#revision .revision-sub {
  font-size: clamp(20px, 12.941px + 1.471vw, 28px);
  text-align: center;
}
#revision .revision-txt {
  max-width: 550px;
  margin-inline: auto;
}
#revision .link-box-center {
  margin-top: 40px;
}
#revision .link-box-center .btnL {
  height: auto;
  line-height: 1.5;
  padding: 16px 10px;
  flex-direction: column;
  box-shadow: 0 4px 8px #90816f;
}
#revision .link-box-center .btnL span {
  font-size: 20px;
  display: block;
  font-family: "Libre Caslon Display", serif;
  letter-spacing: 2px;
}

#promise {
  background-color: #EDE9E4;
}
#promise ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  #promise ul {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}
#promise ul li {
  font-size: clamp(16px, 7.176px + 1.838vw, 26px);
  font-family: "BIZ UDMincho", serif;
  border: 1px solid #c4bbb0;
  font-weight: 400;
  background-color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #promise ul li {
    padding: 20px 10px;
    width: calc(50% - 8px);
  }
}
#promise ul li span {
  color: #A16C43;
}

#first .first-inner {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
#first .first-inner a {
  display: grid;
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
  background-size: cover;
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(20px, 11.176px + 1.838vw, 30px);
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  #first .first-inner a {
    aspect-ratio: 2.5/1;
  }
}
#first .first-inner a span {
  z-index: 2;
}
#first .first-inner a:before {
  content: "";
  background-color: #8A6A3E;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.7;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.5s;
  border-radius: 5px;
}
#first .first-inner a:hover:before {
  filter: brightness(0.7);
}
#first .first-link1 {
  background-image: url(../images/toppage/first-1.webp);
}
#first .first-link2 {
  background-image: url(../images/toppage/first-2.webp);
}
@media screen and (max-width: 767px) {
  #first .first-link2 {
    background-position: 50%;
  }
}

#message {
  background-color: #EDE9E4;
}
#message .message-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
}
@media screen and (min-width: 1024px) {
  #message .message-wrap {
    flex-direction: row;
    gap: 78px;
  }
}
#message .message-wrap .message-txt-box {
  max-width: 570px;
}
@media screen and (max-width: 1023px) {
  #message .message-wrap .message-txt-box {
    max-width: 100%;
  }
}
#message .message-wrap .message-sub {
  font-size: clamp(23px, 15.059px + 1.654vw, 32px);
  margin-bottom: 40px;
}
#message .message-wrap .message-img {
  position: relative;
}
#message .message-wrap .message-img img {
  margin-inline: auto;
}
#message .message-wrap .message-img.effect-scroll .type-visual {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  transition-duration: 1.2s;
}
#message .message-wrap .message-img.effect-scroll .type-sign {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition-delay: 0.4s;
  transition-duration: 1s;
}
#message .message-wrap .message-img .type-visual {
  display: block;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
#message .message-wrap .message-img .type-sign {
  position: absolute;
  bottom: -15px;
  left: 40%;
  right: auto;
  z-index: 10;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  #message .message-wrap .message-img .type-sign {
    left: auto;
    bottom: -30px;
    right: 0;
  }
}

#recruit .recruit-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  #recruit .recruit-wrap {
    flex-direction: row;
    gap: 60px;
    align-items: center;
  }
}
#recruit .recruit-wrap .recruit-img {
  flex-shrink: 0;
}
#recruit .recruit-wrap .recruit-img img {
  margin-inline: auto;
}

.message-link-box {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .message-link-box {
    flex-direction: column;
    align-items: center;
  }
}

/*hNavi3-2*/
@media screen and (max-width: 1023px) {
  .hNavi3-2 .sub-menu {
    display: none;
  }
  .hNavi3-2 .menu-item-has-children > .sub-menu-toggle::after {
    content: "▼";
    display: inline-block;
    cursor: pointer;
    transition: 0.2s;
  }
  .hNavi3-2 .menu-item-has-children.active-sub-menu > .sub-menu-toggle::after {
    transform: rotate(180deg);
    transition: 0.2s;
  }
  .hNavi3-2 .sub-menu-toggle.active-sub-menu > .sub-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }
  .hNavi3-2 .sub-menu-toggle {
    position: absolute;
    right: 15px;
    top: 0;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.hNavi3-2 {
  position: fixed;
  width: 100%;
  z-index: 1001;
  top: 0;
}
@media screen and (min-width: 1024px) {
  .hNavi3-2 .header-inner {
    background: #fff;
    align-items: center;
  }
  .hNavi3-2 .header-inner #header {
    max-width: 1500px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .hNavi3-2 .header-inner #header #branding a h1 {
    margin: 0;
  }
  .hNavi3-2 .header-inner #menu-headnav {
    display: flex;
    /* gap: 10px; */
  }
  .hNavi3-2 .header-inner #menu-headnav > li {
    /*           &:not(:last-child){
     border-right: 1px solid #fff;
               }
     */
  }
  .hNavi3-2 .header-inner #menu-headnav > li.menu-item-has-children > a:hover {
    color: #3C2F25;
  }
  .hNavi3-2 .header-inner #menu-headnav > li.js_fire > a {
    color: #3C2F25;
    background-color: #F7F4F1;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > a {
    /* min-width: 115px; */
    color: #3C2F25;
    display: block;
    text-align: center;
    font-weight: 400;
    position: relative;
    transition: color 0.2s linear 0s;
    padding: 26px 16px;
    font-size: 16px;
    font-family: "BIZ UDMincho", serif;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > a:hover {
    color: #9C7C4A;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > .sub-menu {
    position: absolute;
    top: 80px;
    left: 0;
    background: #F7F4F1;
    font-size: 16px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 30px 10vw;
    display: none;
    transition: color 0.2s linear 0s;
    box-shadow: 0px 6px 10px rgba(214, 214, 214, 0.3294117647);
  }
  .hNavi3-2 .header-inner #menu-headnav > li > .sub-menu li {
    padding: 2px 0 2px 15px;
    position: relative;
    float: left;
    margin-right: 30px;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > .sub-menu li a {
    color: #3C2F25;
    font-size: 14px;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > .sub-menu li a:hover {
    color: #9C7C4A;
  }
  .hNavi3-2 .header-inner #menu-headnav > li > .sub-menu li:before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #B46B37;
  }
}
@media screen and (max-width: 1023px) {
  .hNavi3-2 .header-inner {
    position: relative;
    z-index: 200;
  }
  @supports (height: 100dvh) {
    .hNavi3-2 .header-inner {
      height: 100dvh;
    }
  }
  .hNavi3-2 #branding {
    padding: 8px 15px 10px 15px;
    background-color: #fff;
  }
  .hNavi3-2 #branding a {
    pointer-events: auto;
  }
  .hNavi3-2 #menu {
    transition: all 1s linear 0s;
    position: fixed;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100%;
    padding-top: 24px;
    background-color: #F7F4F1;
    transition: all 0.6s;
    z-index: 200;
    padding-left: 30px;
    overflow-y: auto;
  }
  .hNavi3-2 #menu #menu-headnav > li {
    position: relative;
    margin-bottom: 1rem;
  }
  .hNavi3-2 #menu #menu-headnav > li > a {
    font-family: "BIZ UDMincho", serif;
    font-weight: 400;
    font-size: 24px;
    color: #3C2F25;
    position: relative;
  }
  .hNavi3-2 #menu #menu-headnav > li > a span {
    padding-left: 20px;
  }
  .hNavi3-2 #menu .sub-menu a {
    color: #3C2F25;
  }
  .hNavi3-2 .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .hNavi3-2 .hamburger_border {
    position: absolute;
    left: 0px;
    width: 40px;
    height: 1px;
    background-color: #3C2F25;
    transition: all 0.6s;
  }
  .hNavi3-2 .hamburger_border_top {
    top: 14px;
  }
  .hNavi3-2 .hamburger_border_center {
    top: 32px;
  }
  .hNavi3-2 .hamburger_border_bottom {
    top: 23px;
  }
}
.hNavi3-2 li.n-head.menu-item {
  padding: 0px 0 5px 30px !important;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .hNavi3-2 li.n-head.menu-item {
    /*  display: none; */
  }
}
.hNavi3-2 li.n-head.menu-item > a {
  font-size: 17px !important;
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
  /*  color: v.$link-color!important; */
}
@media screen and (max-width: 1023px) {
  .hNavi3-2 li.n-head.menu-item > a {
    font-size: 20px !important;
  }
}
.hNavi3-2 li.n-head.menu-item > a:hover {
  cursor: default !important;
}
@media screen and (min-width: 1024px) {
  .hNavi3-2 li.n-head.menu-item:before {
    content: "";
    position: absolute;
    background-image: url(../images/icon/headnav-line.svg) !important;
    background-size: contain;
    top: 16px !important;
    left: 0px !important;
    width: 16px !important;
    height: 1px !important;
    border-width: 0px !important;
  }
}

@media screen and (max-width: 1023px) {
  .nav-open #branding .logo {
    opacity: 0.1;
  }
  .nav-open #menu {
    right: 0;
    pointer-events: none;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
}

@media screen and (max-width: 1023px) {
  .hNavi3-2 > .sub-menu {
    display: none;
    margin: 0.5rem 0 0.5rem 2.2rem;
  }
  .hNavi3-2 > .sub-menu li {
    font-size: 16px;
    margin-bottom: 0.5rem;
  }
  .hNavi3-2 .menu-item-has-children > .sub-menu-toggle::after {
    content: "";
    display: inline-block;
    background-image: url(../images/icon/menu-icon.svg);
    background-repeat: no-repeat;
    width: 7px;
    height: 15px;
    cursor: pointer;
    transition: 0.2s;
  }
  .hNavi3-2 .menu-item-has-children.active-sub-menu > .sub-menu-toggle::after {
    transform: rotate(90deg);
    transition: 0.2s;
  }
  .hNavi3-2 .sub-menu-toggle.active-sub-menu > .sub-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }
  .hNavi3-2 .sub-menu-toggle {
    position: absolute;
    width: 15px;
    left: 0px;
    top: 9px;
    width: 100%;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

body.nav-open {
  overflow: hidden;
}

@media screen and (max-width: 1023px) {
  .nav-open {
    /*
    .black_bg {
        opacity: .8;
        visibility: visible;
      }
        */
  }
  .nav-open #menu {
    /* right: 0; */
    top: 0;
    clip-path: circle(137.8% at 50% 99%);
    pointer-events: auto;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .header-inner.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  .header-outer.hNavi3-2:has(.UpMove) {
    pointer-events: none;
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }
  .header-inner.DownMove {
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
#menu-headnav > .menu-item-has-children > .sub-menu {
  margin-left: 1.5rem;
  margin-top: 1rem;
}
#menu-headnav > .menu-item-has-children > .sub-menu li {
  margin-bottom: 0rem;
}
@media screen and (max-width: 1023px) {
  #menu-headnav > .menu-item-has-children > .sub-menu li {
    margin-bottom: 0.5rem;
  }
}

#menu-headnav > .menu-item-has-children > .sub-menu li > .sub-menu {
  margin-top: 0rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1023px) {
  #menu-headnav > .menu-item-has-children > .sub-menu li > .sub-menu {
    margin-top: 1rem;
  }
}
#menu-headnav > .menu-item-has-children > .sub-menu li > .sub-menu li {
  margin-bottom: 0.1rem;
}

div#site-title {
  display: grid;
  align-items: center;
}

.h-link-wrap {
  position: absolute;
  right: 0;
  display: none;
}
@media screen and (min-width: 1280px) {
  .h-link-wrap {
    display: block;
    height: 100%;
  }
}
.h-link-wrap .h-link {
  display: flex;
  height: 100%;
  gap: 16px;
}

@media screen and (min-width: 1280px) {
  #menu {
    padding-right: 300px;
  }
}

.h-tel {
  font-size: 28px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.h-tel:before {
  content: "";
  background-image: url(../images/icon/freedial.svg);
  background-size: contain;
  display: block;
  width: 34px;
  height: 22px;
}

.h-line a {
  display: block;
  aspect-ratio: 1/1;
  background-color: #00B900;
  color: #fff;
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  font-size: 12px;
  font-weight: bold;
  align-content: center;
  gap: 4px;
}
.h-line a:hover {
  background-color: rgb(0, 159.5, 0);
}

.spmenu-head {
  padding-right: 30px;
  margin-bottom: 45px;
}
.spmenu-head img {
  margin-inline: auto;
}
.spmenu-head .spmenu-head-btn {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.spmenu-head .spmenu-head-btn a {
  display: block;
  width: 50%;
  color: #fff;
  position: relative;
  font-size: 14px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px;
}
.spmenu-head .spmenu-head-btn .spmenu-head-tel {
  background-color: #8A6A3E;
}
.spmenu-head .spmenu-head-btn .spmenu-head-tel:before {
  content: "";
  background-image: url(../images/icon/icon-phone.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 23px;
  height: 23px;
}
.spmenu-head .spmenu-head-btn .spmenu-head-line {
  background-color: #00B900;
}
.spmenu-head .spmenu-head-btn .spmenu-head-line:before {
  content: "";
  background-image: url(../images/icon/icon-line.svg);
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
}
.spmenu-head p {
  color: #8F8F8F;
  font-size: 14px;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .hNavi3-2.header-outer {
    pointer-events: none;
  }
  .hNavi3-2.header-outer .hamburger {
    pointer-events: auto;
  }
  .nav-open .hNavi3-2.header-outer {
    pointer-events: auto;
  }
}
/* news-blog2 */
#news-blog a:not(.btn) {
  color: #3C2F25;
}
#news-blog a:not(.btn):hover {
  color: #5C4A2D;
}
@media screen and (min-width: 1024px) {
  #news-blog {
    display: flex;
    gap: 120px;
  }
}
#news-blog h2.h2--center {
  padding-left: 0;
  padding-right: 0;
}
#news-blog h2.h2--center:after {
  font-size: 14px;
}
#news-blog .link-arrow {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block {
    flex-grow: 1;
  }
}
#news-blog #blog-block .blog-list {
  margin-bottom: 2em;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .blog-list li:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .blog-list .post-list-box {
    display: flex;
    gap: 15px;
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img {
    min-width: 120px;
    width: 30%;
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.6s ease;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block .blog-list {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 2em;
  }
  #news-blog #blog-block .blog-list > li {
    width: 50%;
  }
  #news-blog #blog-block .blog-list > li:hover img {
    transform: scale(1.1);
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img {
    overflow: hidden;
    width: 100%;
  }
  #news-blog #blog-block .blog-list .post-list-box img {
    /*  width: 256px;
      aspect-ratio: 3/2;
      object-fit: cover;*/
    transition: transform 0.6s ease;
    flex-shrink: 0;
  }
}
#news-blog #blog-block .blog-list .time {
  font-size: 14px;
  color: #9B9B9B;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .post-list-box-txt {
    flex-grow: 1;
  }
}
#news-blog #blog-block .post-list-box-txt .cat {
  background: #E1D9D2;
  font-size: 10px;
  padding: 2px 8px;
  margin: 0px 0 4px 0;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block .post-list-box-txt .cat {
    font-size: 12px;
    padding: 4px 16px;
    margin: 20px 0 10px 0;
  }
}
#news-blog #blog-block .post-list-box-txt h3 {
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  overflow: hidden;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "BIZ UDMincho", serif;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .post-list-box-txt h3 {
    font-weight: normal;
    margin-bottom: 0px;
  }
}

span.new {
  margin-right: 8px;
  font-size: 14px;
  padding: 2px 8px 0 8px;
  color: #9C7C4A;
  border: 1px solid #9C7C4A;
}

.news-cat {
  margin-right: 8px;
  font-size: 14px;
  padding: 2px 8px 0 8px;
}
.news-cat.news_category2 {
  background-color: #9C7C4A;
  border: 1px solid #9C7C4A;
  color: #fff;
}
.news-cat.news-cat.news_category1 {
  background-color: #F7F4F1;
  color: #9C7C4A;
  border: 1px solid #9C7C4A;
}

.post-list-box {
  flex-grow: 1;
}

@media screen and (min-width: 768px) {
  #news-block .post-list-box {
    display: flex;
    align-items: center;
  }
}
#news-block .post-list-box h3 {
  margin-top: 0.5rem;
  color: #3C2F25;
}
@media screen and (min-width: 768px) {
  #news-block .post-list-box h3 {
    margin-top: 0;
  }
}
#news-block .link-box-right {
  width: 100%;
  max-width: 870px;
  margin-inline: auto;
}
#news-block .post-list {
  width: 100%;
  max-width: 870px;
}
#news-block .post-list > li {
  gap: 16px;
}
#news-block .post-list > li .time {
  width: auto;
}

.treatment-menu-new {
  /* --- 共通コンポーネント --- */
  /* --- 1. 上部タブ --- */
  /* --- 2. Repairエリア --- */
  /* --- 3. セパレーター --- */
  /* --- 4. カテゴリナビ (Grid Layout) --- */
  /* --- 5. コンテンツパネル --- */
  /* --- グループ表示用（PC横並び） --- */
  /* --- PC: フロートパネル --- */
  /* --- ▼▼▼ ここからお悩み別専用エリア ▼▼▼ --- */
}
.treatment-menu-new .icon-circle {
  width: 81px;
  height: 81px;
  background: #F9F7F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.treatment-menu-new .icon-circle img {
  width: auto;
  height: auto;
}
.treatment-menu-new .btn-detail {
  display: block;
  background: #918577;
  color: #fff;
  font-size: 14px;
  padding: 4px 14px;
  text-decoration: none;
  margin-bottom: 8px;
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  text-align: left;
}
.treatment-menu-new .btn-detail::after {
  content: "›";
  position: absolute;
  right: 10px;
}
.treatment-menu-new .btn-detail:hover {
  background: #9c958d;
}
.treatment-menu-new .btn-menu-toggle,
.treatment-menu-new .btn-menu-toggle-sp-nav,
.treatment-menu-new .btn-menu-open {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #E4DED7;
  color: #3C2F25;
  font-size: 14px;
  padding: 3px 8px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 5px;
  transition: 0.5s;
  text-align: left;
}
.treatment-menu-new .btn-menu-toggle::after,
.treatment-menu-new .btn-menu-toggle-sp-nav::after,
.treatment-menu-new .btn-menu-open::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.3s;
}
.treatment-menu-new .btn-menu-toggle.open::after,
.treatment-menu-new .btn-menu-toggle-sp-nav.open::after,
.treatment-menu-new .btn-menu-open.open::after {
  transform: translateY(-50%) rotate(45deg);
}
.treatment-menu-new .btn-menu-toggle:hover,
.treatment-menu-new .btn-menu-toggle-sp-nav:hover,
.treatment-menu-new .btn-menu-open:hover {
  background-color: #fdfcfc;
}
.treatment-menu-new .tm-view-panel {
  background-color: #fff;
  border: 1px solid #E4DED7;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-view-panel {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .treatment-menu-new.content {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.treatment-menu-new .tm-top-tabs {
  display: flex;
  margin-bottom: -1px;
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-top-tabs {
    margin-right: 24px;
    margin-left: 24px;
  }
}
.treatment-menu-new .tm-top-tabs .tm-top-btn {
  max-width: 390px;
  flex: 1;
  border: 1px solid #E4DED7;
  padding: 10px;
  background: #F9F7F5;
  color: #7A5C43;
  font-size: clamp(16px, 11.588px + 0.919vw, 21px);
  text-align: center;
  cursor: pointer;
}
.treatment-menu-new .tm-top-tabs .tm-top-btn.active {
  background: #E4DED7;
  color: #3C2F25;
}
.treatment-menu-new .tm-repair-area {
  margin-bottom: 30px;
}
.treatment-menu-new .tm-repair-area .tm-sec-title {
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  margin-bottom: 15px;
}
.treatment-menu-new .tm-repair-area .tm-sec-title .en {
  font-size: clamp(28px, 22.706px + 1.103vw, 34px);
}
.treatment-menu-new .tm-repair-area .tm-cat-card {
  background: #fff;
  border: 1px solid #E4DED7;
  /*           padding: 10px; */
  box-shadow: 0 0 6px #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .treatment-menu-new .tm-repair-area .tm-cat-card {
    max-width: 357px;
  }
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-inner {
  display: flex;
  width: 100%;
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-icon {
  width: 138px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: column-reverse;
  padding: 8px 0px 14px 0px;
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-icon .icon-circle {
  margin: 0;
  width: 81px;
  height: 81px;
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-icon .icon-circle img {
  width: auto;
  height: auto;
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-icon .tm-card-label {
  font-size: clamp(16px, 14.235px + 0.368vw, 18px);
  color: #5C4A2D;
}
.treatment-menu-new .tm-repair-area .tm-cat-card .tm-card-actions {
  flex-grow: 1;
  flex-shrink: 0;
  background-color: #F9F7F5;
  padding: 16px;
  display: grid;
  align-items: center;
  align-content: center;
}
.treatment-menu-new .tm-separator {
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #9C7C4A;
  margin: 30px 0;
}
.treatment-menu-new .tm-separator span {
  background-color: #fff;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.treatment-menu-new .tm-separator::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #9C7C4A;
  top: 1.1rem;
  left: 0px;
  z-index: 1;
}
.treatment-menu-new .tm-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new .tm-cat-nav {
    gap: 20px;
  }
}
.treatment-menu-new .tm-cat-nav .tm-cat-card {
  background: #fff;
  border: 1px solid #E4DED7;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 6px #e9e9e9;
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  color: #5C4A2D;
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new .tm-cat-nav .tm-cat-card {
    width: calc(17.4% - 20px);
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.active, .treatment-menu-new .tm-cat-nav .tm-cat-card:hover {
    background: #F9F7F5;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card:nth-child(5) {
    width: 327px;
  }
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-cat-nav .tm-cat-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.pc-only {
    display: none !important;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card .tm-card-inner {
    display: flex;
    align-items: center;
    width: 100%;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card .tm-card-icon {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card .tm-card-icon .icon-circle {
    margin: 0;
    width: 50px;
    height: 50px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card .tm-card-actions {
    margin-left: auto; /* width: 140px;*/
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured .tm-card-inner {
    display: flex;
    width: 100%;
    align-items: stretch;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured .tm-card-inner .tm-card-icon {
    width: 138px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-direction: column-reverse;
    padding: 8px 0px 14px 0px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured .tm-card-inner .tm-card-icon .icon-circle {
    margin: 0;
    width: 81px;
    height: 81px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured .tm-card-inner .tm-card-actions {
    width: 100%;
    text-align: left;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-featured .tm-card-inner .spgrid {
    flex-grow: 1;
    flex-shrink: 0;
    background-color: #F9F7F5;
    padding: 16px;
    display: grid;
    align-items: center;
    align-content: center;
  }
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini {
    width: calc((100% - 30px) / 4);
    display: block;
    padding: 8px 2px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-inner {
    display: block;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-icon {
    display: block;
    gap: 0;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-icon .icon-circle {
    margin: 0 auto 8px;
    width: 60px;
    height: 60px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-icon .icon-circle img {
    width: 35px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-icon .tm-card-label {
    font-size: 16px;
    line-height: 1.3;
    display: block;
    word-break: break-all;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini .tm-card-actions.sp-only {
    display: none !important;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px;
    margin-top: 5px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] .tm-card-inner {
    display: flex;
    align-items: center;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] .tm-card-icon {
    display: flex;
    gap: 10px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] .tm-card-icon .icon-circle {
    width: 60px;
    height: 60px;
    margin: 0;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] .tm-card-icon .icon-circle img {
    width: 45px;
  }
  .treatment-menu-new .tm-cat-nav .tm-cat-card.type-mini[data-cat=group_other-other] .tm-card-icon .tm-card-label {
    font-size: 16px;
  }
}
.treatment-menu-new .tm-content-display-area {
  margin-top: 40px;
  position: relative;
  margin-bottom: 40px;
}
.treatment-menu-new .tm-content-panel {
  display: none;
}
.treatment-menu-new .tm-content-panel.active {
  display: block;
  animation: fadeIn 0.5s;
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new .tm-content-panel.tm-panel-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-content-panel.tm-panel-pc {
    display: none !important;
  }
}
.treatment-menu-new .tm-content-panel .tm-panel-title {
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  margin-bottom: 30px;
}
.treatment-menu-new .tm-content-panel .tm-panel-title .en {
  font-size: clamp(28px, 22.706px + 1.103vw, 34px);
}
.treatment-menu-new .tm-treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .tm-treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.treatment-menu-new .tm-item-card {
  border: 1px solid #E4DED7;
  /* padding: 15px; */
  text-align: center;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.treatment-menu-new .tm-item-card .tm-item-head {
  margin-bottom: 16px;
  padding: 16px 16px 0px 16px;
}
.treatment-menu-new .tm-item-card .tm-item-head .tm-item-name {
  display: block;
  font-size: clamp(16px, 14.235px + 0.368vw, 18px);
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .treatment-menu-new .tm-item-card .tm-item-head .tm-item-name {
    display: grid;
    margin-bottom: 10px;
    word-break: auto-phrase;
    line-height: 1.4;
    height: 3rem;
    align-items: center;
  }
}
.treatment-menu-new .tm-item-card .tm-item-head .tm-item-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #F9F7F5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.treatment-menu-new .tm-item-card .tm-item-head .tm-item-icon img {
  max-width: 50px;
  max-height: 40px;
}
.treatment-menu-new .tm-item-card .tm-item-body {
  width: 100%;
  margin-top: auto;
  padding: 15px 6px 13px 6px;
  background: #F9F7F5;
}
.treatment-menu-new .tm-item-card .tm-item-body .tm-menu-list {
  display: none;
  text-align: left;
  padding: 10px;
}
.treatment-menu-new .tm-item-card .tm-item-body .tm-menu-list li {
  list-style: none;
  margin-bottom: 5px;
  font-size: 14px;
}
.treatment-menu-new .tm-placeholder {
  text-align: center;
  padding: 40px;
  background: #F9F7F5;
  border: 1px dashed #ccc;
  color: #B6A593;
  font-size: 14px;
}
.treatment-menu-new .sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .sp-only {
    display: block !important;
  }
}
.treatment-menu-new .pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .treatment-menu-new .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .treatment-menu-new .tm-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new .tm-group-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
}
.treatment-menu-new .tm-group-section {
  margin-bottom: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.treatment-menu-new .tm-group-section .tm-sub-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new .tm-group-section .tm-treatment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex-grow: 1;
  }
}
.treatment-menu-new .tm-item-body {
  position: relative;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel {
  display: none;
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  max-width: 90vw;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 100;
  border-radius: 8px;
  padding: 15px;
  text-align: left;
  max-height: 224px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #E4DED7 transparent;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .treatment-menu-new .tm-item-body .tm-pc-float-panel {
    width: 300px;
  }
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  transform: translateX(-50%) rotate(45deg);
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-close {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 11px;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-close:hover {
  color: #9C7C4A;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content {
  padding-top: 16px;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul {
    grid-template-columns: 1fr;
  }
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul li a {
  padding: 0;
  gap: 8px;
  background-color: #F9F5EF;
  color: #8A6A3E;
  border: 1px solid #8A6A3E;
  border-radius: 5px;
  opacity: 1;
  transition: 0.5s;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul li a .thumb {
  width: 50px;
  height: 50px;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul li a .txt {
  font-size: 12px;
  line-height: 1.4;
  flex-grow: 1;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul li a::after {
  margin-left: 5px;
  font-size: 12px;
  margin-right: 6px;
}
.treatment-menu-new .tm-item-body .tm-pc-float-panel .tm-float-content ul li a:hover {
  opacity: 0.7;
}
.treatment-menu-new .tm-concern-title {
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  margin-bottom: 15px;
}
.treatment-menu-new .tm-concern-title .en {
  font-size: clamp(28px, 22.706px + 1.103vw, 34px);
}
.treatment-menu-new .tm-item-card.type-concern .tm-item-head {
  margin-bottom: 0px;
}
.treatment-menu-new .tm-item-card.type-concern .tm-item-head .tm-item-name.center {
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3em;
}
@media screen and (min-width: 1024px) {
  .treatment-menu-new #view-concern .tm-treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.treatment-menu-new .mb-m {
  margin-bottom: 40px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* --- メニューリストのスタイル（共通） --- */
.tm-menu-data-source ul, .tm-bs-content ul, .tm-float-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.tm-menu-data-source ul li a, .tm-bs-content ul li a, .tm-float-content ul li a {
  display: flex;
  align-items: center;
  padding: 0px;
  text-decoration: none;
  color: #8A6A3E;
  gap: 15px;
  transition: 0.3s;
  background-color: #F9F5EF;
  border: 1px solid #8A6A3E;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .tm-menu-data-source ul li a, .tm-bs-content ul li a, .tm-float-content ul li a {
    gap: 8px;
  }
}
.tm-menu-data-source ul li a:hover, .tm-bs-content ul li a:hover, .tm-float-content ul li a:hover {
  background: #f9f9f9;
}
.tm-menu-data-source ul li a .thumb, .tm-bs-content ul li a .thumb, .tm-float-content ul li a .thumb {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.tm-menu-data-source ul li a .thumb img, .tm-bs-content ul li a .thumb img, .tm-float-content ul li a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.tm-menu-data-source ul li a .txt, .tm-bs-content ul li a .txt, .tm-float-content ul li a .txt {
  font-size: 13px;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tm-menu-data-source ul li a::after, .tm-bs-content ul li a::after, .tm-float-content ul li a::after {
  content: "›";
  margin-left: auto;
  color: #8A6A3E;
  margin-right: 6px;
}
@media screen and (max-width: 767px) {
  .tm-menu-data-source ul, .tm-bs-content ul, .tm-float-content ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .tm-menu-data-source ul li, .tm-bs-content ul li, .tm-float-content ul li {
    width: calc(50% - 8px);
  }
}

/* --- SP: ボトムシート --- */
.tm-bs-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.tm-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}
.tm-bottom-sheet.active {
  transform: translateY(0);
}
.tm-bottom-sheet .tm-bs-header {
  padding: 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tm-bottom-sheet .tm-bs-header .title {
  font-weight: bold;
  font-size: 16px;
}
.tm-bottom-sheet .tm-bs-header .tm-bs-close {
  font-size: 12px;
  color: #666;
  background: none;
  border: none;
  cursor: pointer;
}
.tm-bottom-sheet .tm-bs-content {
  overflow-y: auto;
  padding: 20px 16px 20px;
  flex: 1;
}

@media screen and (min-width: 1024px) {
  .tm-cat-nav .tm-cat-card.active .icon-circle, .tm-cat-nav .tm-cat-card:hover .icon-circle {
    background: #fff;
  }
}
.tm-panel-footer {
  margin-top: 40px;
}

#panel-group_other .tm-panel-footer,
#panel-group_other .tm-sub-title {
  display: none;
}

/* Chrome / Edge / Safari 用 */
.tm-pc-float-panel::-webkit-scrollbar {
  width: 7px;
}

.tm-pc-float-panel::-webkit-scrollbar-track {
  background: transparent;
}

.tm-pc-float-panel::-webkit-scrollbar-thumb {
  background-color: #E4DED7;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}/*# sourceMappingURL=all.css.map */