@charset "UTF-8";
@font-face {
  font-family: "fontello";
  font-weight: normal;
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation-duration: 0s !important;
            animation-duration: 0s !important;
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

:where(html) {
  -webkit-text-size-adjust: 100%;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

: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(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.22em;
}

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

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

:where(img, picture, svg) {
  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);
}

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

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

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

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

:where(button) {
  background: transparent;
  border: none;
}

:where(em) {
  font-style: normal;
  font-weight: bold;
}

:where(i) {
  font-style: normal;
}

:where(iframe) {
  max-width: 100%;
  height: 100%;
  border: none;
}

:where(img) {
  height: auto;
  border: none;
  -o-object-fit: contain;
     object-fit: contain;
}

:where(p) {
  margin: 0 0 1em;
}

:root {
  --sp-header-height: 3.0rem;
  --pc-header-height: 120px;
  --base-font-weight: 500;
  --pc-fontsize: 1.8rem;
  --pc-l-height: 2.1;
  --color-base-txt: #444;
  --color-base-txt-rgb: 68,68,68;
  --color-base-bg: #fff;
  --color-base-bg-rgb: 255,255,255;
  --color-main: #edaf4a;
  --color-main-rgb: 237,175,74;
  --color-main-dark: #e58f03;
  --color-main-bright: #f7b649;
  --color-sub: #dc5e5e;
  --color-sub-rgb: 220,94,94;
  --color-sub-bright: #ea6061;
  --color-accent: #53a756;
  --color-accent-pale: #ebfbeb;
  --color-txt01: #63432b;
  --color-txt02: #9f8970;
  --color-txt03: #56493d;
  --color-bg01: #fcf5e7;
  --color-bg01-rgb: 252,245,231;
  --color-bg02: #fff0d6;
  --color-bg03: #f8f9e5;
  --color-bg04: #f5f5f5;
  --color-bg05: #fcebeb;
  --color-border: #707070;
  --color-attention: #ea6061;
  --color-highlight: #faff70;
  --color-black: #000;
  --color-black-rgb: 0,0,0;
  --color-gray: #aaa;
  --color-gray-rgb: 180,180,180;
  --color-white: #fff;
  --color-white-rgb: 255,255,255;
}

html {
  scroll-padding-top: var(--sp-header-height, 0);
  font-family: YuGothic, "Yu Gothic", "Yu Gothic Medium", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: var(--base-font-weight, normal);
  font-size: 2.7777777778vw;
}

body {
  color: var(--color-base-txt);
  background-color: var(--color-base-bg);
  word-wrap: break-word;
}
body.spnav_modal {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

main {
  font-size: var(--sp-fontsize, 1.4rem);
  line-height: var(--sp-l-height, 1.5);
}

@media screen and (min-width: 48em), print {
  html {
    scroll-padding-top: var(--pc-header-height, 0);
    font-size: 62.5%;
  }
  body {
    min-width: 1240px;
  }
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  main {
    font-size: var(--pc-fontsize, 1.6rem);
    line-height: var(--pc-l-height, 1.5);
  }
}
#global_header {
  display: flow-root;
  background-image: url(../img/header_bg.webp), -webkit-gradient(linear, left top, left bottom, from(var(--color-bg01)), to(var(--color-bg01)));
  background-image: url(../img/header_bg.webp), linear-gradient(var(--color-bg01), var(--color-bg01));
  background-repeat: repeat-x, no-repeat;
  background-position: 0 15rem, 0 20rem;
  background-size: 60% auto, auto 100%;
}
#global_header .header_wrap {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 1rem 1.5rem 1.5rem;
  color: var(--color-base-txt);
  background: var(--color-base-bg);
}
#global_header .header_wrap .logo {
  width: 27rem;
}
#global_header .header_wrap .logo a {
  display: block;
}
#global_header .header_wrap .contact {
  margin-top: 0.6rem;
  text-align: center;
}
#global_header .header_wrap .contact .phone {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 0.5rem;
}
#global_header .header_wrap .contact .adr {
  font-size: 1.4rem;
}

@media screen and (min-width: 48em), print {
  #global_header {
    background-position: 0 226px, 0 320px;
    background-size: auto, auto 100%;
  }
  #global_header .header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 1200px;
    height: 120px;
    margin: 0 auto;
    padding: 6px 0 0;
  }
  #global_header .header_wrap .logo {
    width: 478px;
  }
  #global_header .header_wrap .contact {
    margin-top: 8px;
    text-align: right;
  }
  #global_header .header_wrap .contact .phone {
    margin-bottom: 5px;
    padding: 0.5rem 1rem;
    font-size: 3rem;
    letter-spacing: 0;
    border-radius: 5px;
  }
  #global_header .header_wrap .contact .adr {
    font-size: 2rem;
  }
}
@media print {
  #global_header {
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 47.99em) {
  .js-sp_modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .js-sp_modal.is_overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(var(--color-base-bg-rgb), 0.95);
  }
  .js-sp_modal.is_overlay::before {
    display: block;
    width: 100%;
    height: 7rem;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-position: 1.5rem 1rem;
    background-size: 27rem auto;
    content: "";
  }
  .js-sp_box {
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
    -webkit-transition: 0.8s cubic-bezier(0.29, 0.19, 0.1, 0.85);
    transition: 0.8s cubic-bezier(0.29, 0.19, 0.1, 0.85);
  }
  .js-sp_box.is_open {
    height: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (min-width: 48em), print {
  .js-pc_sticky {
    position: static;
    top: -70px;
    margin-bottom: 70px;
    -webkit-transition: top 1s 0.3s;
    transition: top 1s 0.3s;
  }
  .js-pc_sticky.is_sticky {
    position: fixed;
    inset: 0 0 auto;
    z-index: 5;
    width: 100%;
    margin-bottom: 0;
    padding-top: 10px;
  }
}
@media print {
  .js-pc_sticky.is_sticky {
    position: static !important;
    margin-bottom: 70px;
    padding-top: 0;
  }
}
#global_nav {
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
#global_nav .gnav > li > a, #global_nav .gnav > li > span {
  display: block;
}
#global_nav .gnav > li > a::before, #global_nav .gnav > li > span::before {
  font-family: "fontello";
  font-weight: normal;
}
#global_nav .gnav > li:nth-child(odd) {
  border-bottom-color: var(--color-main);
}
#global_nav .gnav > li:nth-child(odd) > *::before {
  color: var(--color-main-bright);
}
#global_nav .gnav > li:nth-child(even) {
  border-bottom-color: var(--color-sub);
}
#global_nav .gnav > li:nth-child(even) > *::before {
  color: var(--color-sub-bright);
}
#global_nav .gnav > li .a_home::before {
  content: "\e8de";
}
#global_nav .gnav > li .a_doctor::before {
  content: "\e8d4";
}
#global_nav .gnav > li .sub_tit::before {
  content: "\e82a";
}
#global_nav .gnav > li .a_clinic::before {
  content: "\e82d";
}
#global_nav .gnav > li .a_visitor::before {
  content: "\e840";
}
#global_nav .gnav > li .a_access::before {
  content: "\e888";
}
#global_nav .gnav > li .a_pp::before {
  content: "◎";
}
#global_nav .gnav .subnav a br {
  display: none;
}

@media screen and (max-width: 47.99em) {
  #global_nav #sp_btn {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
    width: 5rem;
    height: 5rem;
    margin: 0;
    padding: 0.5rem 0.5rem 0;
    text-align: center;
    background: rgba(var(--color-white-rgb), 0.5);
    border-radius: 0.3rem;
    -webkit-filter: drop-shadow(0 0 5px var(--color-white));
            filter: drop-shadow(0 0 5px var(--color-white));
  }
  @-webkit-keyframes hamburger_line01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0);
              transform: translateY(9px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(9px) rotate(-45deg);
              transform: translateY(9px) rotate(-45deg);
    }
  }
  @keyframes hamburger_line01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0);
              transform: translateY(9px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(9px) rotate(-45deg);
              transform: translateY(9px) rotate(-45deg);
    }
  }
  @-webkit-keyframes hamburger_line02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
              transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-8px) rotate(45deg);
              transform: translateY(-8px) rotate(45deg);
    }
  }
  @keyframes hamburger_line02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
              transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-8px) rotate(45deg);
              transform: translateY(-8px) rotate(45deg);
    }
  }
  @-webkit-keyframes hamburger_line01_revert {
    0% {
      -webkit-transform: translateY(9px) rotate(-45deg);
              transform: translateY(9px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0);
              transform: translateY(9px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes hamburger_line01_revert {
    0% {
      -webkit-transform: translateY(9px) rotate(-45deg);
              transform: translateY(9px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(9px) rotate(0);
              transform: translateY(9px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes hamburger_line02_revert {
    0% {
      -webkit-transform: translateY(-8px) rotate(45deg);
              transform: translateY(-8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
              transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes hamburger_line02_revert {
    0% {
      -webkit-transform: translateY(-8px) rotate(45deg);
              transform: translateY(-8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
              transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  #global_nav #sp_btn.hamburger .hamburger_line {
    display: block;
    font-size: 0.2rem;
    line-height: 1;
  }
  #global_nav #sp_btn.hamburger .hamburger_line::before, #global_nav #sp_btn.hamburger .hamburger_line::after, #global_nav #sp_btn.hamburger .hamburger_line i {
    overflow: hidden;
    display: inline-block;
    width: 3.2rem;
    height: 2px;
    margin: 3px 0;
    background: var(--color-base-txt);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    content: "";
  }
  #global_nav #sp_btn.hamburger::after {
    font-family: initial;
    font-size: 1.1rem;
    content: "MENU";
  }
  #global_nav #sp_btn.hamburger .hamburger_line::before {
    -webkit-animation: hamburger_line01_revert 0.6s forwards;
            animation: hamburger_line01_revert 0.6s forwards;
  }
  #global_nav #sp_btn.hamburger .hamburger_line::after {
    -webkit-animation: hamburger_line02_revert 0.6s forwards;
            animation: hamburger_line02_revert 0.6s forwards;
  }
  #global_nav #sp_btn.hamburger .hamburger_line i {
    opacity: 1;
  }
  #global_nav #sp_btn.hamburger.load .hamburger_line::before {
    -webkit-animation: none;
            animation: none;
  }
  #global_nav #sp_btn.hamburger.load .hamburger_line::after {
    -webkit-animation: none;
            animation: none;
  }
  #global_nav #sp_btn.hamburger.close::after {
    content: "CLOSE";
  }
  #global_nav #sp_btn.hamburger.close .hamburger_line::before {
    -webkit-animation: hamburger_line01 0.6s forwards;
            animation: hamburger_line01 0.6s forwards;
  }
  #global_nav #sp_btn.hamburger.close .hamburger_line::after {
    -webkit-animation: hamburger_line02 0.6s forwards;
            animation: hamburger_line02 0.6s forwards;
  }
  #global_nav #sp_btn.hamburger.close .hamburger_line i {
    opacity: 0;
  }
  #global_nav .gnav {
    position: absolute;
    top: 7rem;
    left: 0;
    overflow-y: auto;
    width: 100vw;
    max-height: 80dvh;
    padding: 0.5rem 1.5rem 1.5rem 1.8rem;
    color: var(--color-base-txt);
    background: var(--color-base-bg);
  }
  #global_nav .gnav > li {
    border-bottom: 1px dotted;
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li > span {
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
  #global_nav .gnav > li > a::before, #global_nav .gnav > li > span::before {
    display: inline-block;
    margin-right: 0.5rem;
  }
  #global_nav .gnav > li:nth-child(odd), #global_nav .gnav > li:nth-child(even) {
    border-bottom-color: var(--color-gray);
  }
  #global_nav .gnav .subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.8rem 0;
    margin: 0 0 1.5rem 2.2rem;
  }
  #global_nav .gnav .subnav > li {
    width: 50%;
  }
  #global_nav .gnav .subnav > li a {
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--color-main);
  }
}
@media screen and (min-width: 48em), print {
  #global_nav {
    background: rgba(var(--color-bg01-rgb), 0.9);
  }
  #global_nav #sp_btn {
    display: none;
  }
  #global_nav .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1200px;
    margin-inline: auto;
  }
  #global_nav .gnav > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-bottom: 3px solid;
  }
  #global_nav .gnav > li.hn {
    display: none;
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li > span {
    height: 67px;
    padding-bottom: 15px;
    font-size: 2rem;
    text-align: center;
  }
  #global_nav .gnav > li > a::before, #global_nav .gnav > li > span::before {
    display: block;
    font-size: 2.2rem;
    line-height: 1.1;
  }
  #global_nav .gnav > li > a:hover, #global_nav .gnav > li > a:focus, #global_nav .gnav > li > span:hover, #global_nav .gnav > li > span:focus {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(90%, rgba(var(--color-white-rgb), 0.5)), to(rgba(var(--color-white-rgb), 1)));
    background: linear-gradient(transparent 20%, rgba(var(--color-white-rgb), 0.5) 90%, rgba(var(--color-white-rgb), 1));
  }
  #global_nav .gnav > li.sub {
    position: relative;
  }
  #global_nav .gnav > li.sub .sub_tit {
    cursor: pointer;
  }
  #global_nav .gnav > li.sub .sub_box {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  #global_nav .gnav > li.sub:hover .sub_box, #global_nav .gnav > li.sub:focus-within .sub_box {
    z-index: 1;
    opacity: 1;
    visibility: visible;
  }
  #global_nav .gnav > li .subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 750px;
  }
  #global_nav .gnav > li .subnav > li {
    width: 250px;
  }
  #global_nav .gnav > li .subnav > li a {
    display: block;
    padding-inline: 14px;
    font-size: 1.8rem;
    line-height: 40px;
    color: var(--color-white);
    background: rgba(var(--color-sub-rgb), 0.8);
  }
  #global_nav .gnav > li .subnav > li a:hover, #global_nav .gnav > li .subnav > li a:focus {
    background: rgba(var(--color-sub-rgb), 1);
  }
}
.overview {
  --overview-bgcol: #a49c95;
  padding-block: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  background-color: var(--overview-bgcol);
  background-image: url(../img/overview_bg.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.overview .wrap {
  margin-inline: 4%;
  padding: 2rem 1.5rem;
  color: var(--color-base-txt);
  background: rgba(var(--color-white-rgb), 0.8);
  border-radius: 0.8rem;
}
.overview .wrap .logo {
  width: 85%;
  margin: 0 auto 2rem;
}
.overview .wrap .clinic_outline .col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30% 4% auto;
  grid-template-columns: 30% auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem 4%;
  margin-bottom: 1rem;
}
.overview .wrap .clinic_outline .col dt {
  padding-block: 0.3rem;
  color: var(--color-white);
  background: var(--color-txt02);
  text-align: center;
  border-radius: 0.3rem;
}
.overview .wrap .clinic_outline .col dd {
  padding-block: 0.3rem;
}
.overview .wrap .clinic_outline .col dd.telnum {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 0.875;
  color: var(--color-accent);
}
.overview .wrap .timetable {
  margin-top: 2rem;
}
.overview_group {
  padding: 4rem 4% 3rem;
  background: var(--color-bg04);
}
.overview_group .tit {
  margin-bottom: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  color: var(--color-txt02);
}
.overview_group .tit::after {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-main);
  content: attr(data-title);
}
.overview_group .msg {
  margin-bottom: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
.overview_group .box {
  padding-block: 1rem;
}
.overview_group .box .bnr {
  margin-bottom: 1.5rem;
  line-height: 1;
  text-align: center;
}
.overview_group .box .bnr a {
  display: inline-block;
  max-width: 80%;
}
.overview_group .box .bnr a img {
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.2rem rgba(var(--color-black-rgb), 0.16));
          filter: drop-shadow(0.1rem 0.1rem 0.2rem rgba(var(--color-black-rgb), 0.16));
}
.overview_group .box .data {
  display: -ms-grid;
  display: grid;
  place-content: center;
  -ms-grid-columns: 4em 0.5rem auto;
  grid-template-columns: 4em auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
}
.overview_group .box .data dt {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-txt02);
}
.overview_map {
  width: 100%;
  height: 30rem;
}
.overview_map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 1.8rem;
    background-size: auto;
  }
  .overview .wrap {
    margin-inline: auto;
    padding: 55px 66px 58px;
    border-radius: 10px;
  }
  .overview .wrap .logo {
    width: 376px;
    margin: 0 auto 30px;
  }
  .overview .wrap .clinic_outline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .overview .wrap .clinic_outline .col {
    -ms-grid-columns: 125px 20px auto;
    grid-template-columns: 125px auto;
    gap: 25px 20px;
    margin-bottom: 0;
  }
  .overview .wrap .clinic_outline .col:nth-of-type(1) {
    width: 500px;
  }
  .overview .wrap .clinic_outline .col:nth-of-type(2) {
    width: 520px;
  }
  .overview .wrap .clinic_outline .col dt {
    padding-block: 2px;
    border-radius: 3px;
  }
  .overview .wrap .clinic_outline .col dd {
    padding-block: 2px;
  }
  .overview .wrap .clinic_outline .col dd.telnum {
    font-size: 3.2rem;
    line-height: 0.843;
  }
  .overview .wrap .timetable {
    margin-top: 40px;
  }
  .overview_group {
    padding: 88px 0 82px;
  }
  .overview_group .tit {
    margin-bottom: 43px;
    font-size: 3.2rem;
    line-height: 1;
  }
  .overview_group .tit::after {
    margin-top: 16px;
    font-size: 1.6rem;
  }
  .overview_group .msg {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .overview_group .box {
    padding-block: 15px;
  }
  .overview_group .box .bnr {
    margin-bottom: 43px;
  }
  .overview_group .box .bnr a {
    max-width: 100%;
  }
  .overview_group .box .bnr a img {
    -webkit-filter: drop-shadow(3px 3px 3px rgba(var(--color-black-rgb), 0.16));
            filter: drop-shadow(3px 3px 3px rgba(var(--color-black-rgb), 0.16));
  }
  .overview_group .box .bnr a:hover {
    opacity: 0.7;
  }
  .overview_group .box .data {
    gap: 11px 25px;
    font-size: 2rem;
  }
  .overview_group .box .data dt {
    padding: 0;
    font-size: 100%;
  }
  .overview_map {
    height: 500px;
  }
}
@media screen and (min-width: 2001px) {
  .overview {
    background-size: cover;
  }
}
#global_footer {
  padding: 0 0 4rem;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
  background: var(--color-main);
}
#global_footer .footer_wrap {
  display: none;
}
#global_footer .copyright {
  display: block;
  padding-block: 1.2rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  #global_footer {
    padding: 18px 0 0;
    font-size: 1.6rem;
  }
  #global_footer .footer_wrap {
    display: block;
    padding-block: 32px;
  }
  #global_footer .footer_wrap ul {
    margin-inline: auto;
    text-align: center;
    letter-spacing: -0.4em;
  }
  #global_footer .footer_wrap ul li {
    display: inline-block;
    padding: 0 0.5em;
    letter-spacing: 0;
    -webkit-text-size-adjust: none;
  }
  #global_footer .footer_wrap ul li ~ li {
    border-left: 1px solid currentColor;
  }
  #global_footer .footer_wrap ul li:nth-child(8) {
    border-left: none;
  }
  #global_footer .footer_wrap ul li a:hover {
    text-decoration: underline;
  }
  #global_footer .footer_wrap ul.gnav .sub {
    display: none;
  }
  #global_footer .footer_wrap ul.subnav {
    width: 880px;
  }
  #global_footer .footer_wrap ul.subnav li {
    margin-top: 32px;
  }
  #global_footer .footer_wrap ul.subnav li a br {
    display: none;
  }
  #global_footer .copyright {
    padding-block: 45px;
    font-size: 1.6rem;
  }
}
.js-pageup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 4.8rem;
  right: 0.8rem;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.js-pageup.is_active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 48em), print {
  .js-pageup {
    bottom: 30px;
    right: 30px;
  }
}

#sp_footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 4rem;
  background: var(--color-base-bg);
  -webkit-box-shadow: 0 -0.1rem 0.5rem rgba(var(--color-black-rgb), 0.12);
          box-shadow: 0 -0.1rem 0.5rem rgba(var(--color-black-rgb), 0.12);
}
#sp_footer li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 4rem;
  text-align: center;
}
#sp_footer li a {
  display: block;
}
#sp_footer li.phone {
  font-size: 1.7rem;
  color: var(--color-white);
  background: var(--color-sub);
}
#sp_footer li.resv {
  font-size: 1.6rem;
  color: var(--color-white);
  background: var(--color-main-bright);
}
@media screen and (min-width: 48em), print {
  #sp_footer {
    display: none;
  }
}

#pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  padding: 0;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
  background: var(--color-sub);
  border-radius: 50%;
  border: none;
}
#pageup::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e803';
}
#pageup span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #pageup:hover {
    background: var(--color-sub-bright);
  }
}
@media print {
  #pageup {
    display: none !important;
  }
}

.movie-embed iframe {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  .movie-embed iframe {
    height: 52.5rem;
  }
}

#open-chatbot {
  position: fixed;
  bottom: 5rem;
  left: 1rem;
  background: url("../img/fixed_ai_sp.png") no-repeat left bottom;
  background-size: contain;
  width: 55vw;
  max-width: 384px;
  height: 16vw;
  max-height: 107px;
  border: none;
  z-index: 9999;
}
#open-chatbot span {
  display: none;
}

button {
  cursor: pointer;
}

@media screen and (min-width: 48em), print {
  #open-chatbot {
    bottom: 0;
    left: 1rem;
    background: url(../img/fixed_ai_pc.png) no-repeat;
    background-size: cover;
    border: none;
    width: 220px;
    height: 80px;
    margin: 0;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.cf::after {
  clear: both;
  display: block;
  content: "";
}

.l-cf, .l-intro {
  display: flow-root;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1200px;
    margin-inline: auto;
  }
}
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.txt_c {
  text-align: center !important;
}

.img_c {
  max-width: 80%;
  margin: 0 auto 1.4rem;
  border-radius: 0.5rem;
}
.img_c.w100 {
  max-width: 100%;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 0 auto 1.4rem;
  border-radius: 0.5rem;
}

@media screen and (max-width: 47.99em) {
  .img_c.sp_w100 {
    max-width: 100%;
  }
  .img_c.mb0, .img_l.mb0, .img_r.mb0 {
    margin-bottom: 1.4rem;
  }
}
@media screen and (min-width: 48em), print {
  .img_c {
    max-width: 750px;
    margin: 0 auto 20px;
    border-radius: 10px;
  }
  .img_c.pc_w100 {
    max-width: 100%;
  }
  .img_l {
    float: left;
    max-width: 412px;
    margin-top: calc((var(--pc-l-height, 1.5) - 1) * 0.5em);
    margin-right: 40px;
    margin-bottom: 0.5em;
    margin-left: 0;
    border-radius: 10px;
  }
  .img_r {
    float: right;
    max-width: 412px;
    margin-top: calc((var(--pc-l-height, 1.5) - 1) * 0.5em);
    margin-right: 0;
    margin-bottom: 0.5em;
    margin-left: 40px;
    border-radius: 10px;
  }
}
.mb40 {
  margin-bottom: 4rem;
}

.mb0 {
  margin-bottom: 0;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt5 {
  margin-top: 0.5rem;
}

.mt0 {
  margin-top: 0;
}

@media screen and (min-width: 48em), print {
  .mb40 {
    margin-bottom: 80px;
  }
  .mt40 {
    margin-top: 80px;
  }
  .mt30 {
    margin-top: 60px;
  }
  .mt20 {
    margin-top: 40px;
  }
  .mt10 {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 10px;
  }
}
article:not(:last-of-type) {
  margin-bottom: 5rem;
}
article > .l-intro {
  margin-bottom: 3.5rem;
}
article > .l-intro ~ section {
  margin-top: 3.5rem;
}
article > .l-intro ~ section section {
  margin-top: 2.5rem;
}
article > section ~ section {
  margin-top: 4.5rem;
}
article > section section {
  margin-top: 3.5rem;
}
article > section section section {
  margin-top: 2.5rem;
}
article > section h2 + section, article > section h3 + section {
  margin-top: 2.5rem;
}

@media screen and (min-width: 48em), print {
  article:not(:last-of-type) {
    margin-bottom: 90px;
  }
  article > .l-intro {
    margin-bottom: 60px;
  }
  article > .l-intro ~ section {
    margin-top: 60px;
  }
  article > .l-intro ~ section section {
    margin-top: 40px;
  }
  article > section ~ section {
    margin-top: 80px;
  }
  article > section section {
    margin-top: 60px;
  }
  article > section section section {
    margin-top: 40px;
  }
  article > section h2 + section, article > section h3 + section {
    margin-top: 40px;
  }
}
.tit_01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1.2;
}

.tit_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.3em;
  margin-bottom: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-txt02);
}
.tit_02::before, .tit_02::after {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 1.8em;
  height: 0.76em;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}
.tit_02::before {
  background-image: url(../img/tit_02_l.svg);
}
.tit_02::after {
  background-image: url(../img/tit_02_r.svg);
}

.tit_03 {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.2;
  color: var(--color-txt01);
  border-bottom: 0.3rem solid currentColor;
  -webkit-box-shadow: 0 0.2rem 0 0 var(--color-txt02);
          box-shadow: 0 0.2rem 0 0 var(--color-txt02);
}

.tit_04 {
  margin-bottom: 1.1rem;
  padding-bottom: 0.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--color-main-dark);
  border-bottom: 0.2rem solid currentColor;
}

.tit_05 {
  margin-bottom: 0.9rem;
  padding-bottom: 0.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--color-sub);
  border-bottom: 0.2rem dotted currentColor;
}

.tit_06 {
  margin-bottom: 0.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--color-main);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.4rem;
  }
  .tit_02 {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-bottom: 26px;
    font-size: 3.2rem;
  }
  .tit_02::before, .tit_02::after {
    width: 62px;
    height: 25px;
  }
  .tit_03 {
    margin-bottom: 22px;
    padding-bottom: 6px;
    font-size: 3rem;
    border-bottom-width: 3px;
    -webkit-box-shadow: 0 3px 0 0 var(--color-txt02);
            box-shadow: 0 3px 0 0 var(--color-txt02);
  }
  .tit_04 {
    margin-bottom: 14px;
    padding-bottom: 6px;
    font-size: 2.8rem;
    border-bottom-width: 3px;
  }
  .tit_05 {
    margin-bottom: 10px;
    padding-bottom: 6px;
    font-size: 2.6rem;
    border-bottom-width: 4px;
  }
  .tit_06 {
    margin-bottom: 5px;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 48em), print {
  :where(.contents) :where(li) {
    line-height: 1.5;
  }
}

.lst_ul > li {
  padding-left: 1.3em;
}
.lst_ul > li::before {
  display: inline-block;
  margin-left: -1.3em;
  margin-right: 0.3em;
  color: var(--color-main);
  line-height: 1;
  content: "●";
  -webkit-transform: scale(1.11);
          transform: scale(1.11);
}

.lst_ul {
  margin-bottom: 1em;
}
.lst_ul > li ~ li {
  margin-top: 0.5em;
}
.lst_ul > li.none::before {
  display: none;
}
.lst_ul > li.etc {
  padding-left: 0;
}
.lst_ul > li.etc::before {
  display: none;
}
.lst_ul.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 1.5em;
}
.lst_ul.cols > li ~ li {
  margin-top: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ul > li ~ li {
    margin-top: 0.5em;
  }
  .lst_ul.cols2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.5em 0;
  }
  .lst_ul.cols2 > li {
    width: 47%;
  }
  .lst_ul.cols2 > li ~ li {
    margin-top: 0;
  }
  .lst_ul.cols3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.5em 5%;
  }
  .lst_ul.cols3 > li {
    width: 30%;
  }
  .lst_ul.cols3 > li ~ li {
    margin-top: 0;
  }
}

.lst_ol {
  margin-bottom: 1em;
}
.lst_ol > li {
  margin-left: 1.4em;
  list-style-type: decimal;
}
.lst_ol > li ~ li {
  margin-top: 0.5em;
}
.lst_ol > li::marker {
  font-size: 120%;
  line-height: 1;
  color: var(--color-main-dark);
}
@media screen and (min-width: 48em), print {
  .lst_ol > li::marker {
    font-size: 133%;
  }
}
.lst_ol > li.none {
  margin-left: 0;
  list-style-type: none;
}

.lst_any {
  margin-bottom: 1em;
}
.lst_any > li {
  padding-left: 1em;
  text-indent: -1em;
}
.lst_any > li > * {
  text-indent: 0;
}
.lst_any > li ~ li {
  margin-top: 0.5em;
}
.lst_any > li.none {
  padding-left: 0;
  text-indent: 0;
}
.lst_any > li.none::before {
  display: none;
}
.lst_any.arrow > li ~ li {
  margin-top: 0;
}
.lst_any.arrow > li:not(:last-child)::after {
  display: block;
  content: "↓";
}

.dl_tbl {
  margin-bottom: 1em;
  border: 1px solid var(--color-gray);
}
.dl_tbl dt {
  padding: 0.5em 1em;
  background: var(--color-bg01);
}
.dl_tbl dt:not(:first-of-type) {
  border-top: 1px solid var(--color-gray);
}
.dl_tbl dd {
  padding: 1em;
  border-top: 1px solid var(--color-gray);
}
.dl_tbl dd :last-child {
  margin-bottom: 0;
}

.dl_flow {
  counter-reset: flowNum 0;
}
.dl_flow dt {
  counter-increment: flowNum 1;
  padding: 1.3rem 1.5rem 0.3rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-main-dark);
  background: var(--color-white);
  border-width: 0.1rem 0.1rem 0 0.1rem;
  border-style: solid;
  border-color: var(--color-main-dark);
  border-radius: 0.5rem 0.5rem 0 0;
}
.dl_flow dt::before {
  content: counter(flowNum) ". ";
}
.dl_flow dd {
  position: relative;
  padding: 0.3rem 1.5rem 1.2rem;
  background: var(--color-white);
  border-width: 0 0.1rem 0.1rem 0.1rem;
  border-style: solid;
  border-color: var(--color-main-dark);
  border-radius: 0 0 0.5rem 0.5rem;
}
.dl_flow dd:not(:last-child) {
  margin-bottom: 3.5rem;
}
.dl_flow dd:not(:last-child)::after {
  position: absolute;
  bottom: -2.4rem;
  left: 0;
  right: 0;
  display: block;
  width: 6.5rem;
  height: 1.1rem;
  background-color: var(--color-main-dark);
  content: "";
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  margin-inline: auto;
}
.dl_flow dd > *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .dl_flow dt {
    padding: 28px 34px 5px;
    font-size: 2.6rem;
    border-width: 2px 2px 0 2px;
    border-radius: 10px 10px 0 0;
  }
  .dl_flow dd {
    padding: 8px 34px 26px;
    border-width: 0 2px 2px 2px;
    border-radius: 0 0 10px 10px;
  }
  .dl_flow dd:not(:last-child) {
    margin-bottom: 90px;
  }
  .dl_flow dd:not(:last-child)::after {
    bottom: -64px;
    width: 196px;
    height: 33px;
  }
}

.tbl_fit, .tbl_price, .tbl_data {
  margin-bottom: 1em;
  line-height: 1.3;
  border-collapse: collapse;
}
.tbl_fit th, .tbl_price th, .tbl_data th {
  padding: 0.6em 0.7em;
  font-weight: normal;
}
.tbl_fit td, .tbl_price td, .tbl_data td {
  padding: 0.6em 1em;
}
.tbl_fit td :last-child, .tbl_price td :last-child, .tbl_data td :last-child {
  margin-bottom: 0;
}
.tbl_fit:has(+ .remarks, + .notification), .tbl_price:has(+ .remarks, + .notification), .tbl_data:has(+ .remarks, + .notification), .tbl_fit:has(+ .lst_any), .tbl_price:has(+ .lst_any), .tbl_data:has(+ .lst_any) {
  margin-bottom: 0.5em;
}
.tbl_fit + .lst_any li ~ li, .tbl_price + .lst_any li ~ li, .tbl_data + .lst_any li ~ li {
  margin-top: 0;
}
@media screen and (min-width: 48em), print {
  .tbl_fit th, .tbl_price th, .tbl_data th {
    padding: 1em 1.5em;
  }
  .tbl_fit td, .tbl_price td, .tbl_data td {
    padding: 1em 2em;
  }
}

.tbl_data {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.tbl_data th {
  text-align: left;
  background-color: var(--color-bg01);
  border-bottom: 1px solid var(--color-border);
}
.tbl_data td {
  border-bottom: 1px solid var(--color-border);
}

.tbl_price {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.tbl_price th {
  font-weight: 700;
  text-align: left;
  background-color: var(--color-bg01);
  border-bottom: 1px solid var(--color-border);
}
.tbl_price th i {
  display: inline-block;
  font-weight: 400;
  font-size: 90%;
}
.tbl_price th p {
  margin-top: 0.5em;
  margin-bottom: 0;
  font-weight: 400;
}
.tbl_price td {
  border-left: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.tbl_price td:last-child {
  width: 25%;
  padding-inline: 0.5em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  white-space: nowrap;
  text-align: center;
}
.tbl_price td:last-child p {
  white-space: normal;
}
.tbl_price td:last-child i {
  display: inline-block;
  margin-top: 0.2em;
  font-size: 90%;
}
.tbl_price td:last-child i.ar_up {
  margin: 0;
  font-size: 100%;
}
@media screen and (max-width: 47.99em) {
  .tbl_price td:last-child i.ar_up {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (min-width: 48em), print {
  .tbl_price tbody th {
    white-space: nowrap;
  }
  .tbl_price tbody th p {
    white-space: normal;
  }
  .tbl_price tbody td:last-child {
    width: 20%;
    padding-inline: 1em;
  }
  .tbl_price tbody td:last-child p {
    white-space: inherit;
  }
}

.tbl_fit th {
  background: var(--color-bg03);
  border: 1px solid var(--color-border);
}
.tbl_fit td {
  border: 1px solid var(--color-border);
}

@media screen and (max-width: 47.99em) {
  .sp_frame {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1rem;
  }
  .sp_frame > table {
    width: 200%;
  }
}
@media screen and (min-width: 48em), print {
  .sp_frame > table {
    width: 100%;
  }
}

.box_notes, .box_notice, .box_disease, .box_symptoms {
  margin-bottom: 1em;
  padding: 1.5rem;
  border-radius: 0.8rem;
}
.box_notes:has(+ .remarks, + .notification), .box_notice:has(+ .remarks, + .notification), .box_disease:has(+ .remarks, + .notification), .box_symptoms:has(+ .remarks, + .notification), .box_notes:has(+ .lst_any), .box_notice:has(+ .lst_any), .box_disease:has(+ .lst_any), .box_symptoms:has(+ .lst_any) {
  margin-bottom: 0.5em;
}
.box_notes > :last-child, .box_notice > :last-child, .box_disease > :last-child, .box_symptoms > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .box_notes, .box_notice, .box_disease, .box_symptoms {
    padding: 35px 43px;
    border-radius: 10px;
  }
}

.box_symptoms {
  background: var(--color-bg03);
}

.box_disease {
  background: var(--color-bg01);
}

.box_notice {
  background: var(--color-bg05);
}

.box_notes {
  background: var(--color-bg04);
}

:where(.contents) a {
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  :where(.contents) a:hover {
    text-decoration: none;
  }
}

.lnk_external::after {
  display: inline-block;
  margin-left: 0.2em;
  font-family: "fontello";
  font-weight: normal;
  content: '\f08e';
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.btn_detail, .btn_back {
  display: inline-block;
  padding: 0.7em 1.5em;
  font-size: 120%;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color-white);
  background: var(--color-main-dark);
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
  border-radius: 5px;
}
.btn_detail::after, .btn_back::after {
  display: inline-block;
  width: 1.8em;
  height: 0.39em;
  margin-left: 0.3em;
  vertical-align: 0.05em;
  border-right: 2px solid rgba(var(--color-white-rgb), 0.9);
  border-bottom: 2px solid rgba(var(--color-white-rgb), 0.9);
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  content: "";
}
@media screen and (min-width: 48em), print {
  .btn_detail, .btn_back {
    -webkit-box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
            box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
  }
  .btn_detail:hover, .btn_back:hover {
    -webkit-filter: saturate(1.2) brightness(1.1);
            filter: saturate(1.2) brightness(1.1);
  }
}

.btn_sub {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0.7em 1.5em;
  font-size: 120%;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  color: var(--color-white);
  background: var(--color-sub);
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
  border-radius: 5px;
}
@media screen and (min-width: 48em), print {
  .btn_sub {
    -webkit-box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
            box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
  }
  .btn_sub:hover {
    -webkit-filter: saturate(1.2) brightness(1.1);
            filter: saturate(1.2) brightness(1.1);
    opacity: 0.9;
  }
}

.mark {
  color: inherit;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-highlight, mark)));
  background: linear-gradient(transparent 60%, var(--color-highlight, mark) 60%);
}

.em {
  font-weight: bold;
}

.attn, .notification {
  color: var(--color-attention, #f00);
}

.f-smaller {
  font-size: 0.85em;
}

.f-larger {
  font-size: 1.15em;
}

.f-fpm {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.remarks, .notification {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
}
.remarks > *, .notification > * {
  text-indent: 0;
}
span.remarks, span.notification {
  display: inline-block;
}

.notification {
  line-height: 1.5;
}

.js-tel {
  white-space: nowrap;
}
@media screen and (max-width: 47.99em) {
  .js-tel a {
    color: inherit;
    text-decoration: none !important;
  }
}

.phone:has(> a) a::before, .phone::before {
  display: inline-block;
  font-family: "fontello";
  font-weight: normal;
  content: '\e8d9';
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  letter-spacing: -0.14em;
}

.phone:has(> a)::before {
  display: none;
}
.phone:has(> a) a {
  display: inline-block;
}
.timetable_tbl {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1;
}
.timetable_tbl caption {
  display: none;
}
.timetable_tbl thead th {
  padding: 0.8rem 0;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-txt02);
}
.timetable_tbl thead th:first-child {
  width: 29%;
  border-radius: 0.3rem 0 0 0.3rem;
}
.timetable_tbl thead th:last-child {
  width: 12%;
  padding-right: 1%;
  border-radius: 0 0.3rem 0.3rem 0;
}
.timetable_tbl tbody th {
  padding: 1rem 0;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-txt02);
}
.timetable_tbl tbody td {
  text-align: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-txt02);
}
.timetable_tbl tbody td:last-child {
  padding-right: 1%;
}
.timetable_note {
  padding-top: 0.4rem;
}

@media screen and (min-width: 48em), print {
  .timetable_tbl thead th {
    padding: 0.63em 0;
  }
  .timetable_tbl thead th:first-child {
    width: 23.4%;
    border-radius: 3px 0 0 3px;
  }
  .timetable_tbl thead th:last-child {
    width: 15.6%;
    padding-right: 5.5%;
    border-radius: 0 3px 3px 0;
  }
  .timetable_tbl tbody th {
    padding: 1.17em 0;
    border-bottom-width: 2px;
  }
  .timetable_tbl tbody td {
    padding: 1.17em 0;
    border-bottom-width: 2px;
  }
  .timetable_tbl tbody td:last-child {
    padding-right: 5.5%;
  }
  .timetable_note {
    padding-top: 0.3em;
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.slick-list {
  position: relative;
  overflow: hidden;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  overflow: hidden;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

.slick-loading .slick-list {
  background: #fff url("./../js/slick/image/ajax-loader.gif") center center no-repeat;
}

@font-face {
  font-family: "slick";
  src: url("../js/slick/image/fonts/slick.eot");
  src: url("../js/slick/image/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../js/slick/image/fonts/slick.woff") format("woff"), url("../js/slick/image/fonts/slick.ttf") format("truetype"), url("../js/slick/image/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  height: 2.5rem;
  width: 2.4rem;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  pointer-events: none;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0 !important;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 2.4rem;
  line-height: 1;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.slick-prev {
  left: 3px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: 3px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 3px;
}
[dir=rtl] .slick-next {
  left: 3px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 1em;
}

.slick-dots {
  width: 100%;
  margin-top: 1em;
  line-height: 1;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  width: 1em;
  margin: 0 0.5em;
}
.slick-dots li button {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  font-size: 0px;
  color: transparent;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

body#page_index #global_header {
  background-position: 0 20rem, 0 25rem;
}
@media screen and (min-width: 48em), print {
  body#page_index #global_header {
    background-position: 0 326px, 0 420px;
  }
}

.greeting_tit, .feature_tit, .treatment_tit, .aboutus_tit, .news_tit {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 1;
  text-align: center;
  color: var(--color-txt02);
}
.greeting_tit::after, .feature_tit::after, .treatment_tit::after, .aboutus_tit::after, .news_tit::after {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-main);
  content: attr(data-title);
}
@media screen and (min-width: 48em), print {
  .greeting_tit, .feature_tit, .treatment_tit, .aboutus_tit, .news_tit {
    font-size: 3.2rem;
  }
  .greeting_tit::after, .feature_tit::after, .treatment_tit::after, .aboutus_tit::after, .news_tit::after {
    margin-top: 16px;
    font-size: 1.6rem;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero_img {
  opacity: 0;
  -webkit-animation: fadeIn 2s ease-in-out forwards;
          animation: fadeIn 2s ease-in-out forwards;
}
.hero_img.slick-initialized {
  opacity: 1;
}

.hero {
  position: relative;
}
.hero_img {
  position: relative;
  width: 92%;
  height: 22rem;
  margin-inline: auto;
  border-radius: 1rem;
  overflow: hidden;
}
.hero_img .slick-list .slick-slide img {
  width: auto;
  height: 25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero_inner {
  opacity: 0;
  -webkit-animation: fadeIn 2s ease-out 1.5s forwards;
          animation: fadeIn 2s ease-out 1.5s forwards;
}
.hero_inner .copy {
  position: absolute;
  top: 15rem;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  text-align: center;
  text-shadow: var(--color-white) 1px 0px 0px, var(--color-white) 0.540302px 0.841471px 0px, var(--color-white) -0.416147px 0.909297px 0px, var(--color-white) -0.989992px 0.14112px 0px, var(--color-white) -0.653644px -0.756802px 0px, var(--color-white) 0.283662px -0.958924px 0px, var(--color-white) 0.96017px -0.279415px 0px;
}
.hero_inner .copy em {
  font-weight: 700;
  color: var(--color-accent);
}
.hero_right {
  opacity: 0;
  -webkit-animation: fadeIn 2s ease-out 1.5s forwards;
          animation: fadeIn 2s ease-out 1.5s forwards;
}
.hero_right .ann {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 94%;
  margin: 1rem auto 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.hero_right .ann > div, .hero_right .ann > a {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.15;
  text-align: center;
}
.hero_right .ann .new {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding: 0.8rem 1.8rem;
  color: var(--color-white);
  background: var(--color-main);
}
.hero_right .ann .new span {
  display: inline-block;
}
.hero_right .ann .new span b {
  font-weight: 500;
  font-size: 1.6rem;
}
.hero_right .ann .new em {
  font-weight: 500;
  font-size: 1.7rem;
}
.hero_right .ann .column_btn {
  --bg-column: linear-gradient(#eea1a1,#dc5e5e);
  padding: 1rem 0.7rem;
  color: var(--color-white);
  background: var(--bg-column);
  border-radius: 2em;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.2);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.2);
}
.hero_right .timetable {
  background: #FFF;
  width: 96%;
  margin: 2rem auto;
  padding: 1rem;
}

@media screen and (min-width: 48em), print {
  .hero {
    margin-bottom: 60px;
  }
  .hero_img {
    width: clamp(1200px, 96%, 1300px);
    height: 600px;
    margin-inline: auto;
    border-radius: 20px;
  }
  .hero_img .slick-list .slick-slide img {
    height: 600px;
  }
  .hero_inner {
    position: absolute;
    bottom: 35px;
    left: calc(50% - 600px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 1200px;
  }
  .hero_inner .copy {
    position: static;
    width: auto;
    margin-bottom: 15px;
    font-size: 2.8rem;
    text-align: left;
    text-shadow: var(--color-white) 1px 0px 5px, var(--color-white) 0.540302px 0.841471px 5px, var(--color-white) -0.416147px 0.909297px 5px, var(--color-white) -0.989992px 0.14112px 5px, var(--color-white) -0.653644px -0.756802px 5px, var(--color-white) 0.283662px -0.958924px 5px, var(--color-white) 0.96017px -0.279415px 5px;
  }
  .hero_inner .copy em {
    font-size: 3.6rem;
  }
  .hero_right {
    position: absolute;
    bottom: 35px;
    right: calc(50% - 600px);
    width: 400px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .hero_right .timetable .timetable_tbl td, .hero_right .timetable .timetable_tbl th {
    font-size: 1.4rem;
  }
  .hero_right .ann {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 400px;
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }
  .hero_right .ann > div, .hero_right .ann > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-weight: 500;
  }
  .hero_right .ann .new {
    --bg-new: linear-gradient(#fbe0b3,#edaf4a);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 170px;
    height: 170px;
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
    background: var(--bg-new);
    border-radius: 50%;
  }
  .hero_right .ann .new span b {
    font-size: 3.2rem;
  }
  .hero_right .ann .new span.y {
    font-size: 2.2rem;
  }
  .hero_right .ann .new em {
    font-size: 2.8rem;
    line-height: 2;
  }
  .hero_right .ann .column_btn {
    padding: 0.7rem;
    width: 120px;
    height: 120px;
    font-size: 2.2rem;
    word-break: auto-phrase;
    border-radius: 50%;
    -webkit-box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
            box-shadow: 3px 3px 3px rgba(var(--color-black-rgb), 0.16);
  }
  .hero_right .ann .column_btn:hover {
    -webkit-filter: saturate(1.25);
            filter: saturate(1.25);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    -webkit-box-shadow: 2px 5px 4px rgba(var(--color-black-rgb), 0.2);
            box-shadow: 2px 5px 4px rgba(var(--color-black-rgb), 0.2);
  }
}
.information {
  padding: 3rem 3% 4rem;
  background: var(--color-bg01);
}
.information .gmap {
  border: 1px solid var(--color-txt02);
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
  height: 22rem;
}
.information .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.information .gcalendar {
  margin-top: 2.5rem;
}
.information .gcalendar iframe {
  width: 100%;
  height: 27rem;
  margin-bottom: 0.5em;
  border: 1px solid var(--color-txt02);
  border-radius: 0.5rem;
  overflow: hidden;
}

@media screen and (min-width: 48em), print {
  .information {
    padding: 30px calc(50% - 600px) 100px;
  }
  .information .gmap {
    height: 500px;
    border-radius: 10px;
  }
  .information .gcalendar {
    margin-top: 50px;
  }
  .information .gcalendar iframe {
    height: 540px;
    border-radius: 10px;
  }
  .information .gcalendar ul {
    line-height: 1.5;
  }
}
.js-news > dt {
  cursor: pointer;
}
.js-news > dd {
  word-wrap: break-word;
}
.js-news > dd a {
  color: var(--color-sub);
  text-decoration: underline;
}
.js-news > dd a:hover {
  text-decoration: none;
}
.js-news > dd:not(:nth-of-type(-n+3)) {
  display: none;
}

.news {
  padding: 4rem 4% 0;
}
.news_box {
  margin: 2rem 0;
  padding-top: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border-top: 2px solid var(--color-main);
}
.news_box dt {
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--color-main-dark);
}
.news_box dt::before {
  display: inline-block;
  margin-right: 0.5rem;
  font-family: "fontello";
  font-weight: normal;
  content: '\e80a';
  font-size: 1.4rem;
  line-height: 1;
}
.news_box dt.is_open::before {
  content: "\e80d";
}
.news_box dt ~ dt {
  margin-top: 1.2em;
}
.news_box dd {
  padding-block: 0.5rem;
}
.news .info_reservation {
  margin-top: 3rem;
  padding: 1.8rem 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--color-accent-pale);
  border-radius: 0.8rem;
}
.news .info_reservation .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color-accent);
  text-align: center;
}
.news .info_reservation .tit::before, .news .info_reservation .tit::after {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
  height: 2px;
  background: var(--color-accent);
  content: "";
}
.news .info_reservation .digisma .txt {
  line-height: 1.6;
}
.news .info_reservation .digisma .qrcode {
  text-align: center;
}
.news .info_reservation .digisma .qrcode a {
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  .news {
    padding: 100px 0 0;
  }
  .news .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .news_tit {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 170px;
  }
  .news_box {
    width: 994px;
    margin: 0;
    padding: 0 0 0 33px;
    border-top: none;
    border-left: 3px solid var(--color-main);
  }
  .news_box dt {
    font-size: 2rem;
  }
  .news_box dt::before {
    margin-right: 5px;
    font-size: 1.5rem;
    vertical-align: 0.15em;
  }
  .news_box dd {
    padding-block: 3px;
    line-height: 1.55;
  }
  .news .info_reservation {
    width: 100%;
    margin-block: 48px;
    padding: 45px 68px;
    border-radius: 10px;
  }
  .news .info_reservation .tit {
    gap: 0 18px;
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
  .news .info_reservation .digisma {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 40px;
  }
  .news .info_reservation .digisma .txt {
    margin-bottom: 0;
    line-height: 2;
  }
  .news .info_reservation .digisma .qrcode {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 120px;
  }
}
.aboutus {
  margin-block: 4rem;
  padding: 2rem 0;
  background-image: url(../img/logomark_alpha.svg), url(../img/index/aboutus_bg_circle.svg), url(../img/index/aboutus_bg.webp);
  background-repeat: no-repeat;
  background-position: 50% 50%, 50% 50%, 50% 112%;
  background-size: 50% auto, 50% auto, contain;
}
.aboutus_txt {
  margin-top: 2rem;
  margin-bottom: 10rem;
  padding: 0 2.5rem 2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, var(--color-white)), to(transparent));
  background: linear-gradient(var(--color-white) 90%, transparent);
}
.aboutus_txt p {
  margin-bottom: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
}

@media screen and (min-width: 48em), print {
  .aboutus {
    min-height: 700px;
    margin-block: 75px;
    padding: 78px 0;
    background-color: var(--color-bg01);
    background-position: calc(50% + 304px) 174px, calc(50% + 304px) 50%, calc(50% - 457px) 50%;
    background-size: 430px auto, 850px auto, auto;
  }
  .aboutus .wrap {
    padding-left: 600px;
  }
  .aboutus_txt {
    margin-top: 35px;
    margin-bottom: 0;
    padding: 0;
    background: none;
  }
  .aboutus_txt p {
    line-height: 2;
  }
}
.treatment {
  margin-block: 5rem;
  padding-inline: 4%;
}
.treatment_lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 10%;
  margin-top: 3rem;
  padding-inline: 5%;
}
.treatment_lst li {
  width: 45%;
}
.treatment_lst li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 1rem 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-txt02);
  background: var(--color-bg02);
  border: 2px dotted var(--color-main);
  -webkit-box-shadow: 0 0 0 0.5rem var(--color-bg02);
          box-shadow: 0 0 0 0.5rem var(--color-bg02);
  border-radius: 0.8rem;
  -webkit-filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16));
          filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16));
}
.treatment_lst li a::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  margin: 0 auto 1rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}
.treatment_lst li .a_internal::after {
  background-image: url(../img/index/treatment_internal.svg);
}
.treatment_lst li .a_blood::after {
  background-image: url(../img/index/treatment_blood.svg);
}
.treatment_lst li .a_anemia::after {
  background-image: url(../img/index/treatment_anemia.svg);
}
.treatment_lst li .a_aging::after {
  background-image: url(../img/index/treatment_aging.svg);
}
.treatment_lst li .a_vaccination::after {
  background-image: url(../img/index/treatment_vaccination.svg);
}
.treatment_lst li .a_travel::after {
  background-image: url(../img/index/treatment_travel.svg);
}
.treatment_lst li .a_checkup::after {
  background-image: url(../img/index/treatment_checkup.svg);
}
.treatment_lst li .a_diabetes::after {
  background-image: url(../img/index/treatment_diabetes.svg);
}
.treatment_lst li .a_hbp::after {
  background-image: url(../img/index/treatment_hbp.svg);
}
.treatment_lst li .a_dyslipidemia::after {
  background-image: url(../img/index/treatment_dyslipidemia.svg);
}
.treatment_lst li .a_wbc::after {
  background-image: url(../img/index/treatment_wbc.svg);
}
.treatment_lst li .a_mm::after {
  background-image: url(../img/index/treatment_mm.svg);
}
.treatment_lst li .a_polycythemia::after {
  background-image: url(../img/index/treatment_polycythemia.svg);
}
.treatment_lst li .a_platelet::after {
  background-image: url(../img/index/treatment_platelet.svg);
}
.treatment_lst li .a_lymph::after {
  background-image: url(../img/index/treatment_lymph.svg);
}
.treatment_lst li .m_diet::after {
  background-image: url(../img/index/treatment_m_diet.svg);
}

@media screen and (min-width: 48em), print {
  .treatment {
    margin-block: 96px;
    padding-inline: 0;
  }
  .treatment_lst {
    gap: 36px;
    margin-top: 50px;
    padding-inline: 0;
  }
  .treatment_lst li {
    width: 273px;
    padding: 5px;
  }
  .treatment_lst li a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 90px;
    padding: 7px 14px 7px 28px;
    font-size: 2rem;
    line-height: 1.3;
    text-align: left;
    -webkit-box-shadow: 0 0 0 5px var(--color-bg02);
            box-shadow: 0 0 0 5px var(--color-bg02);
    border-radius: 10px;
    -webkit-filter: hue-rotate(0deg) drop-shadow(2px 2px 2px rgba(var(--color-black-rgb), 0.16));
            filter: hue-rotate(0deg) drop-shadow(2px 2px 2px rgba(var(--color-black-rgb), 0.16));
  }
  .treatment_lst li a::after {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 75px;
    margin: 0;
  }
  .treatment_lst li a:hover {
    -webkit-filter: hue-rotate(-48deg) drop-shadow(0 0 4px rgba(var(--color-black-rgb), 0.1));
            filter: hue-rotate(-48deg) drop-shadow(0 0 4px rgba(var(--color-black-rgb), 0.1));
  }
}
.feature {
  padding: 4.5rem 4%;
  background: var(--color-bg01);
}
.feature_box {
  counter-reset: fNum 0;
  margin-top: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.feature_box .box {
  counter-increment: fNum 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1.3rem;
  margin-top: 2.5rem;
}
.feature_box .box .tit {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8em;
  aspect-ratio: 5/3;
  padding-top: 0.8rem;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.33;
  text-align: center;
  text-shadow: 0 0 0.5rem var(--color-txt03);
  color: var(--color-white);
  background-color: #bfad9c;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 1rem;
}
.feature_box .box .tit::after {
  position: absolute;
  top: -0.5em;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-size: 3.8rem;
  line-height: 1;
  text-shadow: none;
  content: counter(fNum, decimal-leading-zero);
}
.feature_box .box .txt {
  margin-bottom: 0;
}
.feature_box .box:nth-of-type(odd) .tit::after {
  color: var(--color-main-dark);
}
.feature_box .box:nth-of-type(even) .tit::after {
  color: var(--color-sub);
}
.feature_box .box:nth-of-type(even) .txt {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.feature_box .box[data-ftname=specialist] .tit {
  background-image: url(../img/index/feature_specialist.webp);
}
.feature_box .box[data-ftname=blooddis] .tit {
  background-image: url(../img/index/feature_blooddis.webp);
}
.feature_box .box[data-ftname=internaldis] .tit {
  background-image: url(../img/index/feature_internaldis.webp);
}
.feature_box .box[data-ftname=advmedical] .tit {
  background-image: url(../img/index/feature_advmedical.webp);
}
.feature_box .box[data-ftname=feverop] .tit {
  background-image: url(../img/index/feature_feverop.webp);
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 100px 0;
  }
  .feature_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 46px;
  }
  .feature_box .box {
    display: block;
    width: 230px;
    margin-top: 0;
  }
  .feature_box .box .tit {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 32px;
    padding-top: 0;
    font-size: 2.4rem;
    text-shadow: none;
    border-radius: 15px;
  }
  .feature_box .box .tit::after {
    top: auto;
    bottom: -0.5em;
    font-size: 6rem;
  }
  .feature_box .box .txt {
    line-height: 1.77;
  }
  .feature_box .box:nth-of-type(odd) {
    margin-top: 0;
  }
  .feature_box .box:nth-of-type(even) {
    margin-top: 120px;
  }
}
.greeting {
  margin-block: 4rem;
  padding-inline: 4%;
}
.greeting_tit {
  margin-bottom: 2.5rem;
}
.greeting_box .img {
  max-width: 65%;
  aspect-ratio: 1/1;
  margin-inline: auto;
  border-radius: 0.8rem 0.8rem 0 0;
  overflow: hidden;
}
.greeting_box .img img {
  position: relative;
  top: -1.5rem;
  left: -3.8rem;
  max-width: 118%;
  clip-path: inset(0 0 0 3rem);
}
.greeting_box .txt {
  padding: 1.8rem 2rem 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--color-bg01);
  border-radius: 0.8rem;
}
.greeting_box .txt p {
  line-height: 1.6;
  text-align: justify;
}
.greeting_box .txt .sign {
  text-align: center;
}
.greeting_box .txt .sign span {
  font-size: 1.7rem;
}
.greeting_box .txt .more {
  margin-top: 1.8rem;
  text-align: center;
}
.greeting_box .txt .more .btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.5rem;
  width: 60%;
  padding: 0.8rem;
  color: var(--color-white);
  background: var(--color-main-dark);
  border-radius: 0.5rem;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
}
.greeting_box .txt .more .btn::after {
  display: inline-block;
  width: 2em;
  height: 0.4em;
  border-right: 2px solid rgba(var(--color-white-rgb), 0.9);
  border-bottom: 2px solid rgba(var(--color-white-rgb), 0.9);
  -webkit-transform: skewX(50deg);
          transform: skewX(50deg);
  content: "";
}

@media screen and (min-width: 48em), print {
  .greeting {
    margin-top: 90px;
    margin-bottom: 100px;
    padding-inline: 0;
  }
  .greeting_tit {
    margin-bottom: 46px;
  }
  .greeting_box {
    display: flow-root;
  }
  .greeting_box .img {
    position: relative;
    z-index: -1;
    float: right;
    max-width: 100%;
    aspect-ratio: auto;
    margin: 0 0 0 -75px;
    border-radius: 10px;
  }
  .greeting_box .img img {
    position: static;
    max-width: 100%;
    clip-path: none;
  }
  .greeting_box .txt {
    width: 824px;
    margin-top: 50px;
    padding: 44px 25px 34px 48px;
    border-radius: 10px;
  }
  .greeting_box .txt p {
    margin-bottom: 1.2em;
    line-height: 1.77;
    text-align: left;
  }
  .greeting_box .txt .sign {
    padding-inline: 15px;
    font-size: 2rem;
    text-align: right;
  }
  .greeting_box .txt .sign span {
    font-size: 2.4rem;
  }
  .greeting_box .txt .more {
    margin-top: 14px;
    padding-inline: 15px;
    text-align: right;
  }
  .greeting_box .txt .more .btn {
    gap: 0 13px;
    width: 220px;
    padding: 1px 0 2px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 2px rgba(var(--color-black-rgb), 0.16);
            box-shadow: 2px 2px 2px rgba(var(--color-black-rgb), 0.16);
  }
  .greeting_box .txt .more .btn::after {
    width: 30px;
    height: 7px;
  }
  .greeting_box .txt .more .btn:hover {
    background: var(--color-main);
  }
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 3rem 1.4rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10000;
  /*モーダル本体の擬似要素の指定*/
}
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
.modal-container {
  /*モーダル本体に「active」クラス付与した時のスタイル*/
}
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 6rem);
  /*モーダル内のコンテンツの指定*/
}
.modal-body .modal-content {
  background: #fff;
  text-align: left;
  padding: 2rem 1rem;
  border-radius: 1.4rem;
  position: relative;
  /*モーダルを閉じるボタンの指定*/
}
.modal-body .modal-content .modal-close {
  position: absolute;
  top: -3.5rem;
  right: -3rem;
  font-size: 0;
  background: url("../img/modal_close.png") no-repeat center center/contain;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.modal-body .modal-content .txt_wrap {
  text-align: center;
}
.modal-body .modal-content .txt_wrap p {
  margin: 0;
}
.modal-body .modal-content .txt_wrap .logo {
  width: 80%;
  height: auto;
  margin: 0 auto 1.5rem;
}
.modal-body .modal-content .txt_wrap .lead {
  color: var(--color-sub);
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 1.3;
  margin: 0 auto 1.5rem;
}
.modal-body .modal-content .txt_wrap .lead span {
  font-size: 1.8rem;
}
.modal-body .modal-content .btn_wrap [class^=btn_] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3em;
  color: var(--color-white);
  text-align: center;
  font-size: 1.9rem;
  font-weight: bold;
  border-radius: 0.9rem;
  margin: 1.5rem 0 0;
}
.modal-body .modal-content .btn_wrap [class^=btn_] small {
  font-size: 1.4rem;
}
.modal-body .modal-content .btn_wrap [class^=btn_] .icon {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
}
.modal-body .modal-content .btn_wrap .btn_rsv {
  background: var(--color-main-bright);
}
.modal-body .modal-content .btn_wrap .btn_rsv .icon {
  padding-left: 2.3em;
  background: url(../img/modal_rsv.png) no-repeat left center/auto 1.5em;
}
.modal-body .modal-content .btn_wrap .btn_tel {
  background: var(--color-sub);
}
.modal-body .modal-content .btn_wrap .btn_tel .icon {
  padding-left: 2.1em;
  background: url(../img/modal_tel.png) no-repeat left center/auto 1.5em;
}
.modal-body .modal-content .btn_wrap .btn_tel a[href^="tel:"] {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  padding: 1.7em 2em 0.5em 4em;
  margin: -1.7em -2em -0.5em -4em;
}
.modal-body .modal-content .btn_wrap .btn_ai {
  width: 100%;
  background: var(--color-sub);
}
.modal-body .modal-content .btn_wrap .btn_ai .icon {
  padding: 0.2em 0 0.2em 1.9em;
  background: url(../img/modal_ai.png) no-repeat left center/auto 1.2em;
  font-size: 2.2rem;
}

@media screen and (min-width: 48em), print {
  .modal-body {
    width: 73rem;
  }
  .modal-body .modal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 5rem 6rem;
  }
  .modal-body .modal-content .modal-close {
    position: absolute;
    top: 0;
    right: -5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
  .modal-body .modal-content .txt_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .modal-body .modal-content .txt_wrap p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .modal-body .modal-content .txt_wrap .logo {
    width: 212px;
    height: auto;
    margin: 0 auto 1.5rem;
  }
  .modal-body .modal-content .txt_wrap .sp_n {
    display: inline;
  }
  .modal-body .modal-content .txt_wrap .lead {
    font-size: 2.7rem;
  }
  .modal-body .modal-content .txt_wrap .lead span {
    font-size: 2.1rem;
  }
  .modal-body .modal-content .btn_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .modal-body .modal-content .btn_wrap [class^=btn_] {
    padding: 0 1em;
    font-size: 2.3rem;
    margin: 0;
  }
  .modal-body .modal-content .btn_wrap [class^=btn_] small {
    font-size: 1.5rem;
  }
  .modal-body .modal-content .btn_wrap .btn_tel {
    margin: 1.5rem 0 0;
  }
  .modal-body .modal-content .btn_wrap .btn_ai {
    margin: 1.5rem 0 0;
  }
  .modal-body .modal-content .btn_wrap .btn_ai .icon {
    font-size: 2.5rem;
  }
}
.heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 11rem;
  width: 92%;
  margin: 0 auto 1.5rem;
  padding: 1rem 2rem;
  color: var(--color-txt01);
  background-image: url(../img/tit_heading.webp);
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: cover;
  border-radius: 1rem;
}
.heading h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.2;
}
@media screen and (min-width: 48em), print {
  .heading {
    width: min(100%, 1300px);
    min-height: 400px;
    margin: 0 auto 70px;
    padding: 0 50px;
    border-radius: 20px;
  }
  .heading h1 {
    font-size: 3.4rem;
  }
}

.breadcrumbs {
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 1rem 4% 0.5rem;
  font-size: 1.1rem;
  line-height: 1.2;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:not(:first-child)::before {
  display: inline-block;
  margin: 0 0.2em;
  content: "＞";
}
@media screen and (min-width: 48em), print {
  .breadcrumbs {
    padding: 10px 0 5px;
    font-size: 1.8rem;
  }
  .breadcrumbs ol {
    width: 1200px;
    margin: 0 auto;
  }
  .breadcrumbs ol a:hover {
    text-decoration: underline;
  }
}

.contents {
  padding: 3rem 4% 4rem;
}
@media screen and (min-width: 48em), print {
  .contents {
    width: 1068px;
    margin: 0 auto;
    padding: 85px 0 100px;
  }
}

body#page_doctor .doctor_greeting .img_r {
  max-width: 60%;
}
body#page_doctor .doctor_greeting .signature {
  margin-bottom: 0;
  text-align: right;
}
body#page_doctor .doctor_greeting .signature span {
  font-size: 120%;
}
body#page_doctor .doctor_photo {
  width: 60%;
  margin-inline: auto;
}
body#page_doctor .doctor_photo img {
  border-radius: 0.5rem;
}
body#page_doctor .doctor_photo figcaption {
  margin-top: 1rem;
  text-align: center;
}
body#page_doctor .doctor_photo figcaption span {
  font-size: 120%;
}
body#page_doctor .doctor_profile {
  margin-top: 3rem;
}
body#page_doctor .doctor_profile section {
  margin-top: 2rem;
}
body#page_doctor .doctor_profile section.bio dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4.5em 0.5rem auto;
  grid-template-columns: 4.5em auto;
  gap: 0.5rem;
}
@media screen and (min-width: 48em), print {
  body#page_doctor .doctor_greeting {
    display: flow-root;
  }
  body#page_doctor .doctor_greeting .img_r {
    max-width: 400px;
  }
  body#page_doctor .doctor_photo {
    width: 400px;
  }
  body#page_doctor .doctor_photo img {
    border-radius: 10px;
  }
  body#page_doctor .doctor_photo figcaption {
    margin-top: 10px;
  }
  body#page_doctor .doctor_profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px 80px;
  }
  body#page_doctor .doctor_profile section {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
  }
  body#page_doctor .doctor_profile section.bio dl {
    gap: 10px 5px;
    line-height: 1.5;
  }
  body#page_doctor .doctor_profile div > section ~ section {
    margin-top: 40px;
  }
}

body#page_clinic .slider {
  visibility: hidden;
  width: auto;
}
body#page_clinic .slider .slider-panel .slick-slide figcaption {
  display: block;
  padding: 0.5em 0.2em 0.4em;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
  background: var(--color-main-dark);
}
body#page_clinic .slider .slider-panel .slick-arrow::before {
  -webkit-filter: drop-shadow(0 0 2px rgba(var(--color-black-rgb), 0.2));
          filter: drop-shadow(0 0 2px rgba(var(--color-black-rgb), 0.2));
}
body#page_clinic .slider .slider-nav {
  margin-top: 0.5rem;
  margin-right: 1px;
  line-height: 1;
}
body#page_clinic .slider .slider-nav .slick-list .slick-slide img {
  -webkit-filter: opacity(0.4);
          filter: opacity(0.4);
}
body#page_clinic .slider .slider-nav .slick-list .slick-slide.slick-current img {
  outline: 4px solid var(--color-main-dark);
  outline-offset: -4px;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
@media screen and (min-width: 48em), print {
  body#page_clinic .slider {
    width: 750px;
    margin: 0 auto;
  }
  body#page_clinic .slider li {
    line-height: 1;
  }
  body#page_clinic .slider .slider-panel .slick-slide figcaption {
    font-size: 2.4rem;
  }
  body#page_clinic .slider .slider-panel .slick-arrow {
    width: 5rem;
    height: 5rem;
  }
  body#page_clinic .slider .slider-panel .slick-arrow::before {
    font-size: 5rem;
    color: var(--color-main-dark);
    -webkit-filter: none;
            filter: none;
  }
  body#page_clinic .slider .slider-panel .slick-arrow:hover:before, body#page_clinic .slider .slider-panel .slick-arrow:focus:before {
    color: var(--color-main-bright);
  }
  body#page_clinic .slider .slider-panel .slick-prev {
    left: -60px;
  }
  body#page_clinic .slider .slider-panel .slick-next {
    right: -60px;
  }
  body#page_clinic .slider .slider-nav li {
    padding-inline: 1px;
  }
}

body#page_visitor .visitor_first_notice {
  --color-notice-bg: #fcefef;
  margin-top: 2rem;
  padding: 1.3rem 1.8rem 1.3rem;
  background: var(--color-notice-bg);
  border-radius: 0.8rem;
}
body#page_visitor .visitor_first_notice dt {
  margin-bottom: 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 112.5%;
  color: var(--color-sub);
}
@media screen and (min-width: 48em), print {
  body#page_visitor .visitor_first {
    display: flow-root;
  }
  body#page_visitor .visitor_first_notice {
    margin-top: 20px;
    padding: 22px 50px 28px;
    line-height: 1.5;
    border-radius: 10px;
  }
}

body#page_access .access_info dt {
  padding: 0.5rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-white);
  background: var(--color-txt02);
  border-radius: 0.3rem;
}
body#page_access .access_info dd {
  padding: 1rem 0.5rem 1.5rem;
}
body#page_access .access_info dd.telnum {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 2rem;
}
body#page_access .gmap {
  width: 100%;
  height: 35rem;
}
body#page_access .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
body#page_access .timetable {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body#page_access .timetable_tbl {
  line-height: 1.5;
}
@media screen and (min-width: 48em), print {
  body#page_access .access_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 2.2rem;
    line-height: 1.5;
    border: 1px solid var(--color-txt02);
  }
  body#page_access .access_info dt {
    width: 25%;
    padding: 20px 0;
    font-size: 100%;
    border-radius: 0;
  }
  body#page_access .access_info dt ~ dt {
    border-top: 1px solid var(--color-white);
  }
  body#page_access .access_info dd {
    width: 75%;
    padding: 20px 40px;
    font-size: 2rem;
  }
  body#page_access .access_info dd ~ dd {
    border-top: 1px solid var(--color-txt02);
  }
  body#page_access .access_info dd.telnum {
    font-size: 2.4rem;
  }
  body#page_access .gmap {
    height: 550px;
  }
  body#page_access .timetable {
    font-size: 2.2rem;
  }
}

.reference_list {
  margin-top: 3rem;
  padding: 1.8rem 1.5rem 2rem;
  background-image: url(../img/logomark_alpha.svg);
  background-repeat: no-repeat;
  background-position: right -1rem top -1rem;
  background-size: 30% auto;
  border: 1px solid var(--color-main-dark);
  border-radius: 0.5rem;
}
.reference_list ul {
  margin-left: 1.4em;
  list-style-type: square;
  font-size: 95%;
}
.reference_list ul li {
  margin-top: 0.5em;
}
.reference_list ul li::marker {
  color: var(--color-main-dark);
}
.reference_list ul li a {
  color: var(--color-txt01);
}
@media screen and (min-width: 48em), print {
  .reference_list {
    margin-top: 50px;
    padding: 22px 40px 28px;
    background-position: right center;
    border-radius: 10px;
  }
}

@media screen and (max-width: 47.99em) {
  .tbl_price[data-name=totalaging] th {
    width: 7.6rem;
    padding-right: 0.5rem;
  }
  .tbl_price[data-name=totalaging] td .lst_ul {
    font-size: 90%;
  }
}
@media screen and (min-width: 48em), print {
  .tbl_price[data-name=totalaging] td:last-child {
    width: 15%;
  }
  .tbl_price[data-name=totalaging] td .lst_ul {
    font-size: 95%;
  }
}

.tbl_data[data-name=vac], .tbl_data[data-name=vac_shingles] {
  table-layout: fixed;
}
.tbl_data[data-name=vac] thead th, .tbl_data[data-name=vac_shingles] thead th {
  white-space: nowrap;
  font-weight: 700;
  background-color: var(--color-bg04);
}
.tbl_data[data-name=vac] tbody th, .tbl_data[data-name=vac_shingles] tbody th {
  font-weight: 500;
  word-break: auto-phrase;
}
.tbl_data[data-name=vac] tbody td, .tbl_data[data-name=vac_shingles] tbody td {
  border-left: 1px dotted var(--color-gray);
}
@media screen and (min-width: 48em), print {
  .tbl_data[data-name=vac], .tbl_data[data-name=vac_shingles] {
    table-layout: fixed;
  }
  .tbl_data[data-name=vac] tbody td, .tbl_data[data-name=vac_shingles] tbody td {
    padding-inline: 1.5em;
  }
}
.tbl_data[data-name=vac_shingles] {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.tbl_data[data-name=vac_shingles] thead th:first-child {
  width: 30%;
}
@media screen and (min-width: 48em), print {
  .tbl_data[data-name=vac_shingles] {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
  .tbl_data[data-name=vac_shingles] thead th:first-child {
    width: 22%;
  }
}

.rsv_digisma dl {
  padding: 1.2rem 1.5rem 1.5rem;
  text-align: center;
  background: var(--color-accent-pale);
  border-radius: 0.8rem;
}
.rsv_digisma dl dt {
  margin-bottom: 0.5rem;
}
.rsv_digisma dl dd a {
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .rsv_digisma {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 30px;
  }
  .rsv_digisma p {
    margin: 1em 0;
  }
  .rsv_digisma dl {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 40px;
    border-radius: 10px;
  }
}

.cited_image {
  padding: 1.5rem 0;
}
.cited_image img {
  max-width: 100%;
  margin-inline: auto;
}
.cited_image figcaption {
  margin-top: 2rem;
  padding: 0.8rem;
  font-size: 88%;
  background: var(--color-bg04);
  border-radius: 0.5rem;
}
.cited_image figcaption a {
  display: inline-block;
  word-break: auto-phrase;
  color: var(--color-accent);
}
@media screen and (min-width: 48em), print {
  .cited_image {
    padding: 20px 0;
  }
  .cited_image figcaption {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 30px;
    padding: 8px 20px;
    margin-inline: auto;
    text-align: center;
    border-radius: 3em;
  }
}

@counter-style p-decimal {
  system: extends decimal;
  prefix: "";
  suffix: " ) ";
  speak-as: number;
}
body#page_privacypolicy article .lead {
  margin-bottom: 4.5rem;
}
body#page_privacypolicy article ul ul, body#page_privacypolicy article ul ol, body#page_privacypolicy article ol ul, body#page_privacypolicy article ol ol {
  margin-block: 0.5em;
}
body#page_privacypolicy article .lst_ul {
  margin-left: 0.5em;
}
body#page_privacypolicy article .lst_ul > li::before {
  color: inherit;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  content: "●";
}
body#page_privacypolicy article .lst_ol {
  margin-left: 0.5em;
}
body#page_privacypolicy article .lst_ol > li {
  list-style-type: p-decimal;
}
body#page_privacypolicy article .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
body#page_privacypolicy article .dl_num dt ~ dt {
  margin-top: 0.8em;
}
body#page_privacypolicy article .dl_num > dd {
  padding-left: 1.5em;
}
@media screen and (min-width: 48em), print {
  body#page_privacypolicy article .lead {
    margin-bottom: 90px;
  }
}

body#page_404 .notfound {
  padding: 3rem 1rem;
  text-align: center;
}
body#page_404 .notfound .btn_back {
  margin-top: 2em;
}