@charset "UTF-8";
/*************************************************
base-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  color: #2c3e50;
  background: #e8eaec;
}

.wrapper {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow-x: hidden;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .wrapper {
    width: 100%;
    max-width: none;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.inner {
  padding: 0 16px;
}

h2 {
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #2c3e50;
}

h3,
p,
li,
dt,
dd,
th,
td {
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  font-weight: 400;
  color: #2c3e50;
}

a {
  color: #2c3e50;
  text-decoration: none;
}

.en {
  font-family: "Montserrat", sans-serif;
}

.img-box img {
  width: 100%;
}

.obj-fit img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-ell > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-ell-line02 > * {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 2行に制限 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block__text-img {
  display: flex;
  align-items: flex-start;
}
.block__text-img .text-box {
  flex-grow: 1;
}
.block__text-img .img-box {
  flex-shrink: 0;
}

.center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_left.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_right.active {
  opacity: 1;
  transform: translateX(0);
}

.fadeIn_up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_up.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_down {
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_down.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeIn_zoom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadeIn_zoom.active {
  opacity: 1;
  animation: fadeInZoomAnim 0.8s ease forwards;
}

@keyframes fadeInZoomAnim {
  0% {
    transform: scale(0.8) translateY(30px);
  }
  80% {
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.fadeIn--delay-1,
.fadeIn_left--delay-1,
.fadeIn_right--delay-1,
.fadeIn_up--delay-1,
.fadeIn_down--delay-1 {
  transition-delay: 0.2s;
}

.fadeIn--delay-2,
.fadeIn_left--delay-2,
.fadeIn_right--delay-2,
.fadeIn_up--delay-2,
.fadeIn_down--delay-2 {
  transition-delay: 0.4s;
}

.fadeIn--delay-3,
.fadeIn_left--delay-3,
.fadeIn_right--delay-3,
.fadeIn_up--delay-3,
.fadeIn_down--delay-3 {
  transition-delay: 0.6s;
}

.fadeIn--delay-4,
.fadeIn_left--delay-4,
.fadeIn_right--delay-4,
.fadeIn_up--delay-4,
.fadeIn_down--delay-4 {
  transition-delay: 0.8s;
}

.fadeIn--delay-5,
.fadeIn_left--delay-5,
.fadeIn_right--delay-5,
.fadeIn_up--delay-5,
.fadeIn_down--delay-5 {
  transition-delay: 1s;
}

.fadeIn--delay-6,
.fadeIn_left--delay-6,
.fadeIn_right--delay-6,
.fadeIn_up--delay-6,
.fadeIn_down--delay-6 {
  transition-delay: 1.2s;
}

@media (prefers-reduced-motion: reduce) {
  .fadeIn,
  .fadeIn_left,
  .fadeIn_right,
  .fadeIn_up,
  .fadeIn_down {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
.doctor-cta__photo-labels .doctor-cta__label-pre {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.doctor-cta__photo-labels .doctor-cta__label-main {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.doctor-cta__photo-labels.active .doctor-cta__label-pre,
.doctor-cta__photo-labels.active .doctor-cta__label-main {
  opacity: 1;
  transform: translateX(0);
}

.u-pc {
  display: block;
}
@media screen and (max-width: 750px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

.u-md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .u-md {
    display: block;
  }
}

/**
 * Swiper 8.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 25, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #232215;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
  border: 1px solid #232215;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #232215;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

/*************************************************
共通パーツ
*************************************************/
.btn-cta-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  padding: 10px 40px 10px 20px;
  background: #e55b3a;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.btn-cta-orange .btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.badge-gold {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: #b8965a;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  border-radius: 2px;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #8ec953;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.badge-purple {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: #c693cf;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  border-radius: 2px;
  margin-bottom: 5px;
}

.heading-deco-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.heading-deco-row::before, .heading-deco-row::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #e5e7eb;
}
.heading-deco-row--blue::before, .heading-deco-row--blue::after {
  background: #aad6f0;
}
.heading-deco-row--blue .heading-deco-badge {
  color: #036eb7;
}
.heading-deco-row--green::before, .heading-deco-row--green::after {
  background: #8ec953;
}
.heading-deco-row--green .heading-deco-badge {
  color: #61A122;
}
.heading-deco-row--purple::before, .heading-deco-row--purple::after {
  background: #c693cf;
}
.heading-deco-row--purple .heading-deco-badge {
  color: #B880C2;
}

.heading-deco-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.heading-deco-badge__label {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "Marcellus", serif;
}
.heading-deco-badge__num {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
  line-height: 1;
}

.watermark-text {
  position: absolute;
  font-size: 6.4rem;
  font-weight: 400;
  color: rgba(229, 231, 235, 0.6);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.scroll-anchor {
  scroll-margin-top: 62px;
}

.point-label {
  display: inline-block;
  color: #fff;
}

.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 10px 20px;
  background: #00b45e;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 6px;
  cursor: pointer;
}
.btn-line .btn__line-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.info-band {
  padding: 8px 10px;
  background: #aad6f0;
  font-size: 1.4rem;
  font-weight: 600;
}

/*************************************************
予約モーダル
*************************************************/
.reserve-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: flex-end;
}
.reserve-modal[hidden] {
  display: none;
}
.reserve-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.reserve-modal__panel {
  position: relative;
  z-index: 1;
  width: 96%;
  max-height: 90dvh;
  max-width: 500px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  margin: auto;
}
.reserve-modal__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 16px 10px;
  border-bottom: 1px solid #e5e7eb;
  flex-shrink: 0;
  background: #fff;
}
.reserve-modal__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #2c3e50;
  flex-shrink: 0;
}
.reserve-modal__close svg {
  width: 24px;
  height: 24px;
}
.reserve-modal__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.reserve-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reserve-modal__item {
  padding: 16px 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
}
.reserve-modal__item:last-child {
  border-bottom: none;
}
.reserve-modal__station {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  background: #F4EEE2;
  padding: 3px 10px 3px 6px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.reserve-modal__station svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #c9a86c;
}
.reserve-modal__station span {
  font-size: 1.2rem;
}
.reserve-modal__clinic {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.reserve-modal__logo {
  width: auto;
  height: 36px;
  aspect-ratio: 174/63;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.reserve-modal__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
}
.reserve-modal__btns {
  display: flex;
  gap: 6px;
}
.reserve-modal__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex-grow: 1;
}
.reserve-modal__btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.reserve-modal__btn--web {
  background: #e55b3a;
  color: #fff;
}
.reserve-modal__btn--tel {
  background: #2c3e50;
  color: #fff;
}
.reserve-modal__line-banner {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.reserve-modal__line-badge img {
  height: 26px;
  width: auto;
}
.reserve-modal__line-heading {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #2c3e50;
}
.reserve-modal__line-btn {
  margin-top: -15px;
  display: block;
  width: 100%;
  max-width: 280px;
}
.reserve-modal__line-btn img {
  width: 100%;
  height: auto;
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 62px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
  display: flex;
  align-items: center;
}

.header__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 16px;
  gap: 4px;
}

.header__tagline {
  font-size: 1rem;
  font-weight: 400;
  color: #2c3e50;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.header__logo {
  display: block;
  transition: all 0.3s;
}
.header__logo img {
  width: 109px;
  height: auto;
  display: block;
}
.header__logo:hover {
  opacity: 0.8;
}

.header__right {
  display: flex;
  flex-shrink: 0;
}

.header__cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #e55b3a;
  cursor: pointer;
  border: none;
  padding: 0;
}

.header__cta-icon img, .header__cta-icon svg {
  width: 18px;
  height: 18px;
}

.header__cta-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #2c3e50;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
}

.header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: gap 0.3s;
}

.header__menu-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

.header__menu-label {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
}

.is-menu-open .header__menu-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.is-menu-open .header__menu-line:nth-child(2) {
  opacity: 0;
}
.is-menu-open .header__menu-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*************************************************
ドロワーメニュー
*************************************************/
.drawer-menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  background: #f9f7f1;
  z-index: 99;
  display: flex;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  padding: 15px 20px 15px 0;
  border-bottom: 1px solid #c9a86c;
}
.drawer-nav a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/icon_arrow_gold.svg") no-repeat center/contain;
}

/*************************************************
footer / bottom-nav
*************************************************/
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 68px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 -4px 4px 0 rgba(44, 62, 80, 0.04);
  display: flex;
  align-items: stretch;
  z-index: 100;
}

.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  padding: 6px 2px;
  border-right: 1px solid #e5e7eb;
}
.bottom-nav__item--cta {
  background: #e55b3a;
  color: #fff;
  font-size: 1.1rem;
}
.bottom-nav__item--cta svg path {
  fill: #fff;
}

.bottom-nav__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.bottom-nav__icon svg {
  width: 22px;
  height: 22px;
}

.bottom-nav__label {
  display: block;
  font-size: 1.1rem;
  line-height: 1.3;
}

/*************************************************
top
*************************************************/
.section-hero {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 80px;
}
.section-hero .hero__bg {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: -1;
}
.section-hero .hero__bg img {
  width: 155px;
  height: auto;
}
.section-hero .hero__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #b8965a;
  margin-bottom: 8px;
}
.section-hero .hero__badge-text {
  display: inline-flex;
  height: 38px;
  border-top: 1px solid #c9a86c;
  border-bottom: 1px solid #c9a86c;
  font-family: "Noto Serif JP", serif;
  align-items: center;
}
.section-hero .hero__badge-text:last-child {
  font-size: 2.4rem;
}
.section-hero .hero__heading-group {
  margin-bottom: 23px;
  font-family: "Noto Serif JP", serif;
}
.section-hero .hero__heading-sub {
  font-size: clamp(1.6rem, 5.1282051282vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}
.section-hero .hero__heading-main-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.section-hero .hero__heading-pre {
  font-size: clamp(1.8rem, 5.1282051282vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.section-hero .hero__heading-main {
  font-size: clamp(3.2rem, 10.2564102564vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.section-hero .hero__visual {
  position: relative;
}
.section-hero .hero__visual-main {
  width: calc(100% + 16px);
  height: auto;
  margin: 0 -16px 0 auto;
}
.section-hero .hero__visual-main img {
  border-radius: 4px 0 0 4px;
}
.section-hero .hero__treatment-type {
  position: absolute;
  bottom: 10px;
  left: -16px;
}
.section-hero .hero__treatment-type img {
  width: 213px;
  height: auto;
  box-shadow: 0 4px 4px 0 rgba(219, 219, 219, 0.5);
}
.section-hero .hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 8px 0 20px;
}
.section-hero .hero__feature {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.section-hero .hero__feature-bar {
  display: block;
  padding: 4px;
  border-radius: 2px 2px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  background: #8ec953;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-hero .hero__feature-bar::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 10px;
  left: -2px;
}
.section-hero .hero__feature-inner {
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2px 4px 6px;
}
.section-hero .hero__feature-label {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1.4;
}
.section-hero .hero__feature-num {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.section-hero .hero__feature-unit {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
.section-hero .hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.section-hero .hero__cta .hero__cta-desc {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}
.section-hero .hero__cta .btn-cta-orange {
  width: 300px;
}

.section-group {
  margin-top: 40px;
  padding-bottom: 60px;
  background: #f0f8fc;
}
.section-group .group__intro {
  padding: 40px 0 10px;
}
.section-group .group__intro-branch {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: underline;
}
.section-group .group__title_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-group .group__title {
  flex-shrink: 0;
}
.section-group .group__intro-catch {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.section-group .group__intro-catch strong {
  font-weight: 600;
}
.section-group .group__intro-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.section-group .group__intro-img {
  width: 118px;
  height: auto;
}
.section-group .group__grid {
  width: 100%;
  margin-top: 15px;
}
.section-group .clinic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 8px;
}
.section-group .clinic-list__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section-group .clinic-list__station {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.section-group .clinic-list__station::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: #c693cf;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C3.24 0 1 2.24 1 5c0 3.75 5 11 5 11s5-7.25 5-11c0-2.76-2.24-5-5-5zm0 6.5C5.17 6.5 4.5 5.83 4.5 5S5.17 3.5 6 3.5 7.5 4.17 7.5 5 6.83 6.5 6 6.5z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 0C3.24 0 1 2.24 1 5c0 3.75 5 11 5 11s5-7.25 5-11c0-2.76-2.24-5-5-5zm0 6.5C5.17 6.5 4.5 5.83 4.5 5S5.17 3.5 6 3.5 7.5 4.17 7.5 5 6.83 6.5 6 6.5z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.section-group .clinic-list__access {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 2;
}
.section-group .clinic-list__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-group .clinic-list__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-policy .policy__hero {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.section-policy .policy__hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.section-policy .policy__hero-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  background: #b8965a url("../images/policy_title_deco.png") no-repeat right center/contain;
  display: flex;
  flex-direction: column;
  border-radius: 4px 0 0 0;
}
.section-policy .policy__sub {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.section-policy .policy__heading {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.8;
}
.section-policy .policy__body {
  position: relative;
  background: linear-gradient(180deg, #C9A86C 0%, #B8965A 100%);
  padding: 62px 0 32px;
}
.section-policy .policy__deco {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Marcellus", serif;
  font-size: 6.4rem;
  line-height: 1;
  background: linear-gradient(90deg, rgba(242, 238, 233, 0.2) 0%, rgba(210, 191, 159, 0.2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.06em;
  z-index: 0;
}
.section-policy .policy__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-policy .policy__item {
  background: #fff;
  border-radius: 3px;
  padding: 20px 12px;
}
.section-policy .policy__item-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.section-policy .policy__item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2c3e50;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.section-policy .policy__item-title {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  color: #705c39;
  line-height: 1.5;
}
.section-policy .policy__highlight {
  color: #e55b3a;
  font-weight: 700;
}
.section-policy .policy__item-divider {
  height: 1px;
  background: #705c39;
  margin-bottom: 15px;
}
.section-policy .policy__item-text {
  padding: 0 8px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.section-faq {
  background-color: #fff;
  background-image: url("../images/faq_bg_top.jpg"), url("../images/faq_bg_bottom.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
  padding-bottom: 0;
}
.section-faq .faq__heading-block {
  padding: 50px 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-faq .faq__heading-img {
  width: 113px;
  height: auto;
}
.section-faq .faq__heading-catch {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background-color: #fff;
}
.section-faq .faq__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.6;
  margin-top: 6px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 2.5%; /* 0.6px */
  text-underline-offset: 20%; /* 4.8px */
  text-underline-position: from-font;
}
.section-faq .faq__heading-desc {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.6;
  margin-bottom: 15px;
}
.section-faq .faq__heading-highlight {
  color: #e55b3a;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.section-faq .faq__doctor {
  display: flex;
  gap: 10px;
  padding: 16px 0;
  align-items: flex-start;
  border-top: 1px solid #e5e7eb;
}
.section-faq .faq__doctor-photo {
  width: 161px;
  height: 190px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.section-faq .faq__doctor-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-faq .faq__doctor-info {
  flex: 1;
  min-width: 0;
}
.section-faq .faq__doctor-clinic {
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 5px 0;
}
.section-faq .faq__doctor-name {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.section-faq .faq__doctor-san {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 5px;
}
.section-faq .faq__doctor-title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-top: 14px;
}
.section-faq .faq__doctor-highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: #e55b3a;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.section-faq .faq__note {
  margin: 16px 0 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #959EA7;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.section-faq .faq__list {
  padding: 40px 0 40px;
  background: #CEE7F5 url("../images/faq_list_bg.png") repeat left top/128px 128px;
}
.section-faq .faq__qa {
  margin-bottom: 40px;
}
.section-faq .faq__qa:last-child {
  margin-bottom: 0;
}
.section-faq .faq__badge-row {
  margin-bottom: 20px;
  text-align: center;
}
.section-faq .faq__q-badge {
  display: inline-block;
  background: #8ec953;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 3px;
}
.section-faq .faq__q-bubble img {
  width: 100%;
  height: auto;
}
.section-faq .faq__a-bubble {
  margin-top: 15px;
}
.section-faq .faq__a-bubble img {
  width: 100%;
  height: auto;
}
.section-faq .faq__a-content {
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.section-faq .faq__a-content p + p {
  margin-top: 15px;
}
.section-faq .faq__a-content .strong {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
.section-faq .faq__a-highlight {
  font-size: 2rem;
  color: #e55b3a;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
.section-faq .faq__a-image {
  text-align: center;
  margin: 20px auto;
}
.section-faq .faq__a-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  max-width: 300px;
}
.section-faq .faq__a-image-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #959EA7;
  line-height: 1.8;
  margin-bottom: 5px;
}
.section-faq .faq__point-card {
  position: relative;
  background: #fff;
  border: 2px solid #e55b3a;
  padding: 25px 15px;
  margin: 40px 0 20px;
  border-radius: 8px;
}
.section-faq .faq__point-card .point-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0 50px;
  background: #e55b3a;
  font-family: "Marcellus", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}
.section-faq .faq__point-card .point-label::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #e55b3a;
}
.section-faq .faq__point-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #e55b3a;
  margin-bottom: 5px;
  line-height: 1.5;
}
.section-faq .faq__price-card {
  position: relative;
  background: #fff;
  border-top: 3px solid #2c3e50;
  border-bottom: 3px solid #2c3e50;
  padding: 15px 32px;
  margin-top: 20px;
}
.section-faq .faq__price-card::before {
  content: "";
  width: 193px;
  height: 138px;
  background: url("../images/faq_price_deco.png") no-repeat center center/contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section-faq .faq__price-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 16px;
}
.section-faq .faq__price-list {
  display: flex;
  flex-direction: column;
}
.section-faq .faq__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 1px solid #e5e7eb;
}
.section-faq .faq__price-row:last-child {
  border-bottom: none;
}
.section-faq .faq__price-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}
.section-faq .faq__price-num {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #e55b3a;
  line-height: 1;
}
.section-faq .faq__price-unit {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
.section-faq .faq__price-note {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 5px;
  text-align: center;
}
.section-faq .faq__bottom-block {
  margin-top: 20px;
  padding-bottom: 60px;
}
.section-faq .faq__bottom-block img {
  width: 100%;
  height: auto;
  max-width: 390px;
  margin-bottom: 32px;
  margin-left: auto;
}
.section-faq .faq__bottom-block p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.02em;
  padding: 0 16px;
}
.section-faq .faq__bottom-block p:not(:first-child) {
  margin-top: 15px;
}
.section-faq .faq__bottom-block p.strong {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: 4%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.section-doctor-cta .doctor-cta__photo-wrap {
  position: relative;
  height: 350px;
  overflow: hidden;
}
.section-doctor-cta .doctor-cta__photo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.section-doctor-cta .doctor-cta__body {
  width: 100%;
  position: absolute;
  bottom: 30px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0 16px;
}
.section-doctor-cta .doctor-cta__photo-labels {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-doctor-cta .doctor-cta__label-pre {
  display: inline-block;
  background: #fff;
  padding: 3px 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #2c3e50;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}
.section-doctor-cta .doctor-cta__label-main {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  padding: 3px 10px;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-family: "Noto Serif JP", serif;
  color: #b8965a;
  line-height: 1.3;
  border-radius: 4px;
}
.section-doctor-cta .doctor-cta__text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(14, 26, 43, 0.3);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(14, 26, 43, 0.1);
}
.section-doctor-cta .doctor-cta__btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.section-doctor-cta .doctor-cta__line-section {
  background: url("../images/cta_bg_line.jpg") no-repeat center center/cover;
  padding: 24px 16px 42px;
  position: relative;
  overflow: hidden;
}
.section-doctor-cta .doctor-cta__line-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.section-doctor-cta .doctor-cta__line-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.section-doctor-cta .doctor-cta__line-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-top: -30px;
}

.section-reason .reason__header {
  background: linear-gradient(180deg, #F9F7F1 0%, #FFF 100%);
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
  align-content: center;
}
.section-reason .reasons-hero__vertical-text {
  position: absolute;
  top: 68px;
  right: 16px;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 5;
}
.section-reason .reasons-hero__vertical-line {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.05;
}
.section-reason .reasons-hero__vertical-line:nth-child(2) {
  padding-top: 20px;
}
.section-reason .reasons-hero__heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-reason .reasons-hero__heading-bracket {
  display: block;
  width: 74px;
  height: 15px;
  background: url("../images/deco-heading-top.png") no-repeat center/contain;
}
.section-reason .reasons-hero__heading-bracket--bottom {
  background-image: url("../images/deco-heading-bottom.png");
}
.section-reason .reasons-hero__heading-number {
  font-family: "Marcellus", serif;
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
}
.section-reason .reasons-hero__heading-text {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 700;
}
.section-reason .reasons-hero__heading-text span {
  font-size: 4rem;
}
.section-reason .reasons-hero__clinic-photo {
  position: absolute;
  left: 30%;
  top: 20%;
  z-index: 1;
  width: clamp(120px, 8.8194444444vw, 130px);
}
.section-reason .reasons-hero__clinic-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.section-reason .reasons-hero__staff-photo {
  position: absolute;
  left: 0;
  top: 40%;
  z-index: 3;
  width: clamp(240px, 18.0555555556vw, 270px);
}
.section-reason .reasons-hero__staff-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.section-reason .reasons-hero__staff-photo .reasons-hero__bg-text {
  font-family: "Marcellus", serif;
  font-size: 6.4rem;
  font-weight: 400;
  background: linear-gradient(90deg, #C9A86C 0%, #F8F6F2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 16px;
  margin-top: -10px;
}
.section-reason .reasons-hero__consultation-photo {
  position: absolute;
  right: 16px;
  bottom: 5%;
  z-index: 2;
  width: clamp(150px, 11.25vw, 165px);
}
.section-reason .reasons-hero__consultation-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.section-reason .reason__item {
  padding: 50px 16px 35px;
}
.section-reason .reason__item--white {
  background: #fff;
}
.section-reason .reason__item--cream {
  background: #f9f7f1;
}
.section-reason .reason__title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.5;
  margin-bottom: 15px;
}
.section-reason .reason__title-highlight {
  color: #e55b3a;
}
.section-reason .reason__title-highlight span {
  font-size: 1.6rem;
  line-height: 1.5;
}
.section-reason .reason__img-box {
  margin-bottom: 15px;
}
.section-reason .reason__img-box img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
.section-reason .reason__img-box img + img {
  margin-top: 8px;
}
.section-reason .reason__text {
  font-size: 1.5rem;
  font-weight: 400;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.section-reason .reason__text p + p {
  margin-top: 15px;
}
.section-reason .reason__text .strong {
  font-weight: 600;
}
.section-reason .reason__stat-bar {
  margin-bottom: 15px;
}
.section-reason .reason__stat-bar img {
  width: 100%;
  height: auto;
  display: block;
}
.section-reason .reason__award-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.section-reason .reason__access-boxes {
  display: flex;
  gap: 6px;
  margin: 15px 0 24px;
}
.section-reason .reason__access-box {
  flex: 1;
}
.section-reason .reason__access-box img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.09);
}

.section-comparison {
  background: #c9a86c;
  padding: 60px 0;
}
.section-comparison .comparison__header {
  text-align: center;
  padding: 0 16px;
  margin-bottom: 24px;
}
.section-comparison .comparison__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 8px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.section-comparison .comparison__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.02em;
  font-family: "Noto Serif JP", serif;
}
.section-comparison .comparison__scroll-wrap {
  padding: 0 16px;
}
.section-comparison .comparison__table-wrap {
  overflow-x: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  padding: 20px;
}
.section-comparison .comparison__table-img {
  width: 670px;
  min-width: 670px;
}
.section-comparison .comparison__scroll-hint {
  padding: 12px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.section-comparison .comparison__scroll-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.section-comparison .comparison__scroll-indicator {
  width: 40%;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}
.section-comparison .comparison__scroll-text {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-treatment {
  background: #fff;
  padding: 54px 16px 28px;
}
.section-treatment .treatment__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.section-treatment .treatment__heading-img {
  width: 100%;
  margin-bottom: 30px;
}
.section-treatment .treatment__heading-img img {
  width: 100%;
  height: auto;
  display: block;
}
.section-treatment .treatment__tabs {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 2px solid #e5e7eb;
}
.section-treatment .treatment__tab {
  flex: 1;
  padding: 12px 8px;
  background: #fff;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 600;
  color: rgba(44, 62, 80, 0.5);
  cursor: pointer;
  line-height: 1.5;
  text-align: center;
  transition: color 0.2s, border-color 0.2s;
  margin-bottom: -2px;
}
.section-treatment .treatment__tab--active, .section-treatment .treatment__tab[data-tab=invisalign].treatment__tab--active {
  color: #036eb7;
  border-bottom-color: #036eb7;
  background: #fff;
}
.section-treatment .treatment__tab[data-tab=wire].treatment__tab--active {
  color: #e55b3a;
  border-bottom-color: #e55b3a;
}
.section-treatment .treatment__content {
  display: none;
}
.section-treatment .treatment__content--active {
  display: block;
}
.section-treatment .treatment__desc {
  font-size: 1.5rem;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.section-treatment .treatment__merit {
  position: relative;
  background: #fff;
  border: 2px solid #e55b3a;
  padding: 25px 15px;
  margin: 40px 0 20px;
  border-radius: 8px;
}
.section-treatment .treatment__merit .treatment__merit-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0 50px;
  background: #e55b3a;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}
.section-treatment .treatment__merit .treatment__merit-heading::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #e55b3a;
}
.section-treatment .treatment__merit .treatment__merit-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-treatment .treatment__merit .treatment__merit-list li {
  font-size: 1.4rem;
  color: #2c3e50;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}
.section-treatment .treatment__merit .treatment__merit-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/merit-icon.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
}
.section-treatment .treatment__demerit {
  position: relative;
  background: #fff;
  border: 2px solid #036eb7;
  padding: 25px 15px;
  margin: 40px 0 20px;
  border-radius: 8px;
}
.section-treatment .treatment__demerit .treatment__demerit-heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  padding: 0 50px;
  background: #036eb7;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}
.section-treatment .treatment__demerit .treatment__demerit-heading::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #036eb7;
}
.section-treatment .treatment__demerit .treatment__demerit-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.section-treatment .treatment__demerit .treatment__demerit-list li {
  font-size: 1.4rem;
  color: #2c3e50;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
}
.section-treatment .treatment__demerit .treatment__demerit-list li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/demerit-icon.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0.8em;
  transform: translateY(-50%);
}
.section-treatment .treatment__risk {
  background: #f9f7f1;
  padding: 12px;
  margin-top: 30px;
}
.section-treatment .treatment__risk-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e55b3a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-treatment .treatment__risk-text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.section-case {
  padding: 90px 0 45px;
  background: #fff;
}
.section-case .case__header {
  position: relative;
  padding: 0 16px 24px;
  text-align: center;
  z-index: 1;
}
.section-case .case__watermark {
  top: 0;
  left: 50%;
  transform: translate(-50%, -90%);
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "Marcellus", serif;
  background: linear-gradient(90deg, #F4EEE2 0%, #F8F6F2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-case .case__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.section-case .case__desc {
  font-size: 1.5rem;
  color: #2c3e50;
  line-height: 1.8;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-align: left;
}
.section-case .case__worry {
  padding: 0 16px 60px;
}
.section-case .case__worry-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}
.section-case .case__worry-img {
  width: 100%;
  height: auto;
  display: block;
}
.section-case .case__slider-wrap {
  padding: 0 16px;
}
.section-case .case__slider {
  width: 100%;
}
.section-case .case__slide {
  background: #f0f8fc;
  border: 1px solid #CEE7F5;
  padding: 20px 16px;
  border-radius: 4px;
}
.section-case .case__case-num {
  font-size: 1.4rem;
  font-weight: 400;
  color: #b8965a;
  font-family: "Marcellus", serif;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.section-case .case__case-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
.section-case .case__before-after {
  margin-bottom: 10px;
}
.section-case .case__before-after img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}
.section-case .case__tap-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.3rem;
  color: #c693cf;
  text-align: center;
  margin-bottom: 30px;
}
.section-case .case__tap-hint svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.section-case .case__info-row {
  display: flex;
  gap: 8px;
  padding: 6px 0;
}
.section-case .case__info-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #036eb7;
  width: 65px;
  flex-shrink: 0;
}
.section-case .case__info-value {
  font-size: 1.5rem;
  color: #2c3e50;
}
.section-case .case__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 0 16px;
}
.section-case .case__nav-btn {
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 400;
}
.section-case .case__nav-btn svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2c3e50;
  flex-shrink: 0;
  box-sizing: border-box;
  stroke: #fff;
  padding: 6px;
}
.section-case .case__nav-btn span {
  white-space: nowrap;
}
.section-case .case__pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.section-case .case__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #e5e7eb;
  border: none;
  opacity: 1;
  margin: 0;
}
.section-case .case__pagination .swiper-pagination-bullet-active {
  background: #2c3e50;
}
.section-case .treatment__risk {
  background: #f9f7f1;
  padding: 12px;
  margin-top: 30px;
}
.section-case .treatment__risk-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e55b3a;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.section-case .treatment__risk-text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 88dvh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 4px;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}
.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.section-price {
  background: #2c3e50;
  padding: 30px 16px;
}
.section-price .price__header {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  overflow: hidden;
}
.section-price .price__watermark {
  position: relative;
  display: block;
  font-size: 6.4rem;
  font-weight: 400;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", serif;
  text-transform: uppercase;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  text-align: center;
  margin-bottom: -16px;
}
.section-price .price__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.section-price .price__note {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}
.section-price .price__cats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
}
.section-price .price__cat-title {
  padding: 5px 10px;
  border-radius: 9999px;
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
}
.section-price .price__cat-title--green {
  background: #8ec953;
}
.section-price .price__cat-title--purple {
  background: #c693cf;
}
.section-price .price__cat-title--dark {
  background: #705c39;
}
.section-price .price__cat-title--blue {
  background: #036eb7;
}
.section-price .price__rows {
  padding: 4px 0 8px;
}
.section-price .price__item--free {
  padding: 20px 16px 0;
  text-align: center;
}
.section-price .price__free-text {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
}
.section-price .price__free-text strong {
  font-size: 2.4rem;
  color: #e55b3a;
  font-weight: 700;
}
.section-price .price__free-sub {
  font-size: 1.4rem;
}
.section-price .price__rows {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.section-price .price__row {
  margin-top: 30px;
}
.section-price .price__row img {
  width: 100%;
  height: auto;
  display: block;
}
.section-price .price__row-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-price .price__row-flex > .price__row-note {
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}
.section-price .price__row-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-left: 22px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
}
.section-price .price__row-title::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #E3C9E7;
  position: absolute;
  top: 0.45em;
  left: 0;
}
.section-price .price__row-title--noborder {
  border-bottom: none;
}
.section-price .price__category--purple .price__row-title::before {
  background-color: #E3C9E7;
}
.section-price .price__category--dark .price__row-title::before {
  background-color: #B7AD9C;
}
.section-price .price__category--blue .price__row-title::before {
  background-color: #AAD6F0;
}
.section-price .price__row-body {
  display: flex;
}
.section-price .price__row-body--flexrow1 {
  flex-direction: row;
  justify-content: flex-end;
}
.section-price .price__row-body--flexrow2 {
  flex-direction: row;
  justify-content: space-between;
  gap: 5px;
}
.section-price .price__row-body--flexrow2 .price__row-note {
  max-width: 163px;
}
.section-price .price__row-body--flexcolumn {
  flex-direction: column;
}
.section-price .price__row-note {
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.5;
  color: #959EA7;
}
.section-price .price__row-num {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  text-align: right;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #b8965a;
}
.section-price .price__row-num .sub {
  text-align: left;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #2c3e50;
}
.section-price .price__row-num .num {
  min-width: 155px;
}
.section-price .price__row-image {
  width: 100px;
}
.section-price .price__row-text {
  flex: 1;
}
.section-price .price__row-text .price__row-note {
  text-align: right;
}
.section-price .price__remark {
  font-size: 1.2rem;
  color: #959EA7;
  line-height: 1.7;
  display: block;
}
.section-price .price__row-credit {
  margin: 10px 0;
}
.section-price .price__dental-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 1.6rem;
  border-radius: 4px;
}
.section-price .price__dental-table thead tr th {
  background: #2c3e50;
  color: #fff;
  border: 1px solid #2c3e50;
}
.section-price .price__dental-table th {
  padding: 8px 10px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  vertical-align: middle;
}
.section-price .price__dental-table th span {
  font-size: 1.2rem;
  font-weight: 400;
}
.section-price .price__dental-table td {
  padding: 5px 10px;
  text-align: center;
}
.section-price .price__dental-table td:last-child {
  border-right: none;
}
.section-price .price__dental-table td:first-child {
  font-weight: 600;
}
.section-price .price__dental-table td:nth-child(2), .section-price .price__dental-table td:last-child {
  width: 40%;
}
.section-price .price__dental-table tbody tr {
  border-right: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  border-bottom: 1px solid #e5e7eb;
}
.section-price .price__dental-table tbody tr:last-child {
  border-bottom: 1px solid #959EA7;
}
.section-price .price__dental-table tbody tr:nth-child(even) {
  background: #f9f7f1;
}
.section-price .price__koujo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 1.5rem;
}
.section-price .price__koujo-table thead tr th {
  background: #2c3e50;
  color: #fff;
  border: 1px solid #2c3e50;
}
.section-price .price__koujo-table th {
  padding: 8px 10px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
}
.section-price .price__koujo-table td {
  padding: 5px 10px;
  vertical-align: middle;
  line-height: 1.2;
}
.section-price .price__koujo-table td:first-child {
  font-weight: 600;
  text-align: left;
}
.section-price .price__koujo-table td:last-child {
  text-align: right;
}
.section-price .price__koujo-table tbody tr {
  border-right: 1px solid #959EA7;
  border-left: 1px solid #959EA7;
  border-bottom: 1px solid #e5e7eb;
}
.section-price .price__koujo-table tbody tr:last-child {
  border-bottom: 1px solid #959EA7;
}
.section-price .price__koujo-table tbody tr:nth-child(even) {
  background: #f9f7f1;
}
.section-price .price__koujo-table .koujo-sub {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #888;
}

.section-flow {
  background: #fff;
  padding: 40px 0;
}
.section-flow .flow__header {
  position: relative;
  text-align: center;
  margin-bottom: 32px;
  overflow: hidden;
  padding-top: 12px;
}
.section-flow .flow__watermark {
  position: relative;
  display: block;
  font-size: 6.4rem;
  font-weight: 400;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F4EEE2 0%, #F8F6F2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Marcellus", serif;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1;
  text-align: center;
  margin-bottom: -16px;
}
.section-flow .flow__heading {
  font-size: 2.4rem;
  font-weight: 600;
  color: #2c3e50;
  font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 1;
}
.section-flow .flow_list li {
  margin: 0 0 40px;
}
.section-flow .flow_list li .grid_wrap {
  overflow: visible;
  display: grid;
  grid-template-columns: 20% 80%;
  grid-template-rows: auto auto auto;
}
.section-flow .flow_list li .grid_wrap .step {
  grid-column: 1/2;
  grid-row: 1/4;
  text-align: center;
  position: relative;
}
.section-flow .flow_list li .grid_wrap .step .step_no {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  background: #8ec953;
  border-radius: 9999px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-flow .flow_list li .grid_wrap .step::after {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 63px);
  background-size: 2px 6px;
  background-image: linear-gradient(to bottom, #b8965a 3px, transparent 3px);
  background-repeat: repeat-y;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.section-flow .flow_list li .grid_wrap .step_ttl {
  grid-column: 2/3;
  grid-row: 1/2;
  font-weight: 600;
  margin: 10px 0 0;
}
.section-flow .flow_list li .grid_wrap .step_ttl::before {
  display: none;
}
.section-flow .flow_list li .grid_wrap .step_ttl .main {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
}
.section-flow .flow_list li .grid_wrap .image_wrap {
  grid-column: 2/3;
  grid-row: 2/3;
  padding: 20px 0;
}
.section-flow .flow_list li .grid_wrap .image_wrap img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 271/181;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 0;
}
.section-flow .flow_list li .grid_wrap .text_wrap {
  grid-column: 2/3;
  grid-row: 3/4;
  padding: 0 0 20px;
  border-bottom: 1px solid #e5e7eb;
}
.section-flow .flow_list li .grid_wrap .text_wrap .text {
  padding: 10px 0;
}
.section-flow .flow_list li .grid_wrap .text_wrap .flow__step-btn {
  width: 100%;
}

.section-about {
  background: #F4EEE2 url("../images/about_bg.png") repeat center/256px auto;
  padding: 60px 0 40px;
}
.section-about .about__heading {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  margin-bottom: 10px;
}
.section-about .about__area {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 40px;
}
.section-about .about__accordion-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-about .about__accordion-header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 10px;
  background: #705c39;
  border-radius: 3px;
  cursor: pointer;
  list-style: none;
  gap: 10px;
  text-align: center;
}
.section-about .about__accordion-header::-webkit-details-marker {
  display: none;
}
.section-about .about__accordion-header::marker {
  display: none;
}
.section-about .about__accordion-name {
  flex: 1;
}
.section-about .about__accordion-name img {
  height: 54px;
  margin-left: 8px;
}
.section-about .about__accordion-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.section-about .about__accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.section-about .about__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 18px;
  background-color: #fff;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.section-about .is-opened .about__accordion-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}
.section-about .about__accordion-body {
  overflow: hidden;
}
.section-about .about__accordion-inner {
  background: #fff;
  padding: 20px 12px;
}
.section-about .swiper-area {
  position: relative;
  margin-bottom: 40px;
}
.section-about .about__clinic-photos {
  position: relative;
}
.section-about .about__clinic-photos .swiper-slide {
  padding: 0 17px;
}
.section-about .about__clinic-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  min-width: 0;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
.section-about .swiper-button-prev, .section-about .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 50%;
}
.section-about .swiper-button-prev::after, .section-about .swiper-button-next::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
}
.section-about .swiper-button-prev {
  left: 0;
  transform: translate(-30%, 0%);
}
.section-about .swiper-button-prev::after {
  background: url("../images/slider_prev.svg") no-repeat center center/contain;
}
.section-about .swiper-button-next {
  right: 0;
  transform: translate(30%, 0%);
}
.section-about .swiper-button-next::after {
  background: url("../images/slider_next.svg") no-repeat center center/contain;
}
.section-about .about__clinic-pagination {
  width: 100%;
  height: 20px;
  text-align: center;
  bottom: -32px;
}
.section-about .about__clinic-pagination .swiper-pagination-bullet {
  background: #e5e7eb;
  border: none;
  opacity: 1;
}
.section-about .about__clinic-pagination .swiper-pagination-bullet-active {
  background: #2c3e50;
  opacity: 1;
}
.section-about .about__clinic-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section-about .about__clinic-badge {
  align-self: flex-start;
}
.section-about .about__clinic-name {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #2c3e50;
  text-align: center;
}
.section-about .about__clinic-access {
  font-size: 1.4rem;
  margin-top: 24px;
}
.section-about .about__clinic-zip {
  font-size: 1.4rem;
}
.section-about .about__clinic-address {
  font-size: 1.4rem;
  color: #2c3e50;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.section-about .google_map {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
}
.section-about .business_hours {
  background: #f9f7f1;
  padding: 10px 16px;
}
.section-about .business_hours .bh_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-bottom: 1px solid #e5e7eb;
  padding: 6px 0;
  text-align: center;
}
.section-about .business_hours .bh_item .bh_item-ttl {
  width: 20%;
  font-size: 1.4rem;
  line-height: 1.3;
}
.section-about .business_hours .bh_item .bh_item-txt {
  width: 10%;
  font-size: 1.4rem;
  font-weight: 400;
}
.section-about .business_hours .bh_item .bh_item-txt .on_all {
  color: #2c3e50;
}
.section-about .business_hours .bh_item .bh_item-txt .on_part {
  color: #b8965a;
}
.section-about .business_hours .note {
  padding: 3px 10px 0;
  font-size: 1.2rem;
}
.section-about .business_hours .note .on_part {
  color: #b8965a;
}
.section-about .business_hours .note .bh_label {
  background-color: #c9a86c;
  font-weight: 500;
  display: inline-block;
  padding: 0 6px;
  margin-right: 3px;
  margin-left: 6px;
}
.section-about .about__clinic-instagram {
  margin: 12px 0;
}
.section-about .about__clinic-instagram a img {
  width: 100%;
  height: auto;
}
.section-about .about__clinic-line {
  padding: 24px 0 40px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}
.section-about .about__clinic-line-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.section-about .about__clinic-line-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.section-about .about__clinic-line-btn {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-top: -30px;
}
.section-about .about__clinic-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 32px 0 16px;
}
.section-about .about__clinic-buttons .btn-cta-orange,
.section-about .about__clinic-buttons .about__clinic-btn-dark {
  width: 100%;
  max-width: 300px;
}
.section-about .about__clinic-btn-dark {
  background: #2c3e50;
}

.about__copyright {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 32px 16px 84px;
  font-size: 1.2rem;
  color: #c9a86c;
}

/*************************************************
About
*************************************************//*# sourceMappingURL=style.css.map */