@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: 4.0rem;
  --pc-header-height: 80px;
  --base-font-weight: 500;
  --pc-fontsize: 1.8rem;
  --pc-l-height: 2;
  --color-base-txt: #444;
  --color-base-txt-rgb: 68,68,68;
  --color-base-bg: #fefaee;
  --color-base-bg-rgb: 254,250,238;
  --color-theme-rd: #f28d6d;
  --color-theme-rd-rgb: 242, 141, 109;
  --color-theme-rd-hover: #fe8761;
  --color-theme-or: #eeaa5d;
  --color-theme-or-rgb: 238, 170, 93;
  --color-theme-or-hover: #eeb65d;
  --color-theme-bn: #c58564;
  --color-theme-bn-rgb: 197, 133, 100;
  --color-theme-bn-hover: #b36943;
  --color-theme-ye: #d5a41d;
  --color-theme-ye-rgb: 213, 164, 29;
  --color-theme-ye-hover: #ebb521;
  --color-main: #a25e29;
  --color-main-rgb: 162,94,41;
  --color-main-dark: #826a57;
  --color-main-dull: #ae967a;
  --color-sub: #ffdfaf;
  --color-sub-light: #fff0d9;
  --color-sub-pale: #fcf0de;
  --color-bg01: #fbf1d6;
  --color-bg02: #fffae2;
  --color-border: #707070;
  --color-border2: #c0bbb5;
  --color-notice: #d82e1e;
  --color-highlight: #f7e894;
  --color-black: #000;
  --color-black-rgb: 0,0,0;
  --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 {
  background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), -webkit-gradient(linear, left top, left bottom, color-stop(13.5rem, var(--color-sub-pale)), color-stop(13.5rem, transparent));
  background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), linear-gradient(var(--color-sub-pale) 13.5rem, transparent 13.5rem);
  background-repeat: no-repeat;
  background-position: -10% 5.5rem, 110% 5.5rem, 0 0;
  background-size: 20% auto, 20% auto, auto;
}
body#page_index #global_header {
  background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), -webkit-gradient(linear, left top, left bottom, color-stop(17rem, var(--color-sub-pale)), color-stop(17rem, transparent));
  background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), linear-gradient(var(--color-sub-pale) 17rem, transparent 17rem);
}
#global_header .header_wrap {
  padding: 1rem 1rem 0;
}
#global_header .header_wrap .logo {
  width: calc(100% - 6rem);
}
#global_header .header_wrap .logo a {
  display: block;
}
#global_header .header_wrap .clinic_info {
  display: none;
}

@media screen and (min-width: 48em), print {
  #global_header {
    position: relative;
    background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), linear-gradient(var(--color-sub-pale) 350px, transparent 350px);
    background-position: calc(50% - 762px) 0, calc(50% + 762px) 0, 50% 0;
    background-size: auto;
  }
  body#page_index #global_header {
    background-image: url(../img/bg_header_left.webp), url(../img/bg_header_right.webp), linear-gradient(var(--color-sub-pale) 450px, transparent 450px);
    background-position: calc(50% - 762px) 68px, calc(50% + 762px) 68px, 50% 0;
  }
  #global_header .header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1200px;
    height: 100px;
    margin: 0 auto;
    padding: 0;
  }
  #global_header .header_wrap .logo {
    position: relative;
    top: 10px;
    z-index: 1;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 686px;
    height: 114px;
  }
  #global_header .header_wrap .clinic_info {
    display: block;
    width: 210px;
    padding-top: 20px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1;
  }
  #global_header .header_wrap .clinic_info em {
    display: block;
    margin-bottom: 5px;
    padding: 3px 0 5px;
    font-weight: 500;
    font-size: 2.2rem;
    text-align: center;
    color: var(--color-white);
    background: var(--color-theme-or);
    border-radius: 5px;
  }
  #global_header .header_wrap .clinic_info .phone {
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--color-theme-bn);
  }
}
@media print {
  #global_header {
    margin-bottom: 0 !important;
  }
}
#global_nav .js-menu_box {
  display: none;
}

@media screen and (max-width: 47.99em) {
  .js-sp_modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 0;
  }
  .js-sp_modal.is_overlay {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-base-bg);
    background-image: url(../img/bg_character.webp);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 50% auto;
  }
  .js-sp_box {
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-5rem);
            transform: translateY(-5rem);
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }
  .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: relative;
  }
  .js-pc_sticky.is_sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
  }
}
@media print {
  .js-pc_sticky.is_sticky {
    position: relative !important;
  }
}
#global_nav {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.1;
}
#global_nav .gnav {
  text-align: center;
}
#global_nav .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#global_nav .subnav > li {
  width: 50%;
}
#global_nav .subnav > li:not(:nth-child(-n+2)) {
  border-top: 1px dotted rgba(var(--color-white-rgb), 0.3);
}
#global_nav .subnav > li:nth-child(even) {
  border-left: 1px dotted rgba(var(--color-white-rgb), 0.3);
}
#global_nav .subnav > li a {
  display: block;
}

@media screen and (max-width: 47.99em) {
  #global_nav {
    width: 100%;
  }
  #global_nav #sp_btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 4.8rem;
    height: 4.8rem;
    margin: 0;
    padding: 0 0 0.4rem;
    line-height: 0.8;
    text-align: center;
    color: var(--color-white);
    background: var(--color-theme-bn);
    border-radius: 0.5rem;
  }
  #global_nav #sp_btn::before {
    display: block;
    font-family: "fontello";
    font-weight: normal;
    content: '\e806';
    font-size: 3.6rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #global_nav #sp_btn::after {
    font-family: initial;
    font-size: 1.1rem;
    content: "MENU";
  }
  #global_nav #sp_btn.close::before {
    content: "\e807";
  }
  #global_nav #sp_btn.close::after {
    content: "CLOSE";
  }
  #global_nav #sp_btn span {
    display: none;
  }
  #global_nav .gnav {
    position: absolute;
    top: 6.4rem;
    left: 3vw;
    overflow-y: auto;
    width: 94vw;
    max-height: 80dvh;
    padding: 0.5rem 1rem;
    color: var(--color-main);
    background: var(--color-white);
    border-radius: 1rem;
  }
  #global_nav .gnav > li {
    margin: 1.5rem 0;
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    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;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 2.5rem;
    font-weight: 700;
    font-size: 1.6rem;
  }
  #global_nav .gnav > li > a::before, #global_nav .gnav > li > a::after, #global_nav .gnav > li button::before, #global_nav .gnav > li button::after {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    font-weight: normal;
    color: var(--color-sub);
    content: "●";
  }
  #global_nav .subnav {
    margin: 0.5rem 0.5rem 1rem;
    padding: 0.5rem 1rem;
    color: var(--color-white);
    background: rgba(var(--color-main-rgb), 0.75);
    border-radius: 1rem;
  }
  #global_nav .subnav li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  #global_nav .subnav li a {
    padding: 1rem 0;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 48em), print {
  #global_nav {
    width: 100%;
  }
  #global_nav #sp_btn {
    display: none;
  }
  #global_nav .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    color: var(--color-main);
    background: transparent;
  }
  #global_nav .gnav > li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
  }
  #global_nav .gnav > li:not(:first-child)::before {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50px;
    margin-bottom: 10px;
    font-size: 10px;
    content: "●";
    color: var(--color-sub);
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    width: 100%;
    font-size: 2.2rem;
    line-height: 1.4;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #global_nav .gnav > li > a::after, #global_nav .gnav > li button::after {
    display: block;
    height: 2px;
    margin-top: 8px;
    background: var(--color-main);
    content: "";
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  #global_nav .gnav > li > a:hover::after, #global_nav .gnav > li > a:focus::after, #global_nav .gnav > li button:hover::after, #global_nav .gnav > li button:focus::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  #global_nav .gnav > li.sub {
    position: relative;
  }
  #global_nav .gnav > li.sub .sub_btn {
    cursor: pointer;
  }
  #global_nav .gnav > li.sub .sub_box {
    position: absolute;
    left: 40px;
    top: 40px;
    z-index: 1;
  }
  #global_nav .subnav {
    width: 480px;
  }
  #global_nav .subnav li a {
    padding: 15px 0;
    font-size: 1.8rem;
    text-align: center;
    color: var(--color-white);
    background: rgba(var(--color-main-rgb), 0.85);
  }
  #global_nav .subnav li a:hover, #global_nav .subnav li a:focus {
    color: var(--color-white);
    background: rgba(var(--color-main-rgb), 1);
  }
  #global_nav.js-pc_sticky {
    background: rgba(var(--color-base-bg-rgb), 0);
    -webkit-transition: background 0.5s, padding 0s;
    transition: background 0.5s, padding 0s;
  }
  #global_nav.js-pc_sticky.is_sticky {
    padding-block: 10px;
    background: rgba(var(--color-base-bg-rgb), 1);
    -webkit-transition: background 0.5s, padding 0.5s;
    transition: background 0.5s, padding 0.5s;
  }
}
#side_btn {
  display: none;
}
@media screen and (min-width: 48em), print {
  #side_btn {
    display: block;
    position: absolute;
    top: 100px;
    right: 0;
    z-index: 1;
    width: 80px;
    -webkit-transition: top 0.4s;
    transition: top 0.4s;
  }
  #side_btn .rsv_btn {
    display: block;
    width: 80px;
    line-height: 80px;
    padding: 18px 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: inherit;
    color: var(--color-white);
    background: var(--color-theme-bn);
    border-radius: 10px 0 0 10px;
    -webkit-box-shadow: 0px 3px 6px rgba(var(--color-black-rgb), 0.3);
            box-shadow: 0px 3px 6px rgba(var(--color-black-rgb), 0.3);
  }
  #side_btn .rsv_btn::after {
    display: inline-block;
    margin-top: 11px;
    font-family: "fontello";
    font-weight: normal;
    content: '\e82b';
    font-size: 3.6rem;
    line-height: 1;
  }
  #side_btn .rsv_btn:hover {
    color: var(--color-white);
    background: var(--color-theme-bn-hover);
  }
}

.overview {
  padding: 2.5rem 4%;
  font-size: 1.4rem;
  background-image: url(../img/overview_bg.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.overview .wrap {
  padding: 2rem 1.6rem 2.5rem;
  color: var(--color-base-txt);
  background: rgba(var(--color-white-rgb), 0.8);
  border-radius: 0.8rem;
}
.overview .clinic_name {
  max-width: 94%;
  margin: 0 auto 1.5rem;
}
.overview .clinic_outline {
  width: 100%;
  line-height: 1;
}
.overview .clinic_outline > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  margin-top: 0.6rem;
}
.overview .clinic_outline > div dt {
  width: 6em;
  padding: 0.8rem 0;
  font-weight: bold;
  text-align: center;
  color: var(--color-white);
  background: var(--color-theme-or);
  border-radius: 0.5rem;
}
.overview .clinic_outline > div dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 50%;
}
.overview .clinic_outline > div.tel dd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  font-size: 125%;
  color: var(--color-theme-bn);
}
.overview .sche {
  margin-top: 1.8rem;
}
.overview .sche figcaption {
  padding: 0.5rem 0;
  font-weight: bold;
  text-align: center;
  color: var(--color-white);
  background: var(--color-theme-or);
  border-radius: 0.5rem;
}
.overview .sche .timetable {
  margin-top: 0.8rem;
}
.overview_map {
  width: 100%;
  height: 30rem;
}
.overview_map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 97px 0 103px;
    font-size: 1.8rem;
  }
  .overview .wrap {
    padding: 50px 67px 72px;
    border-radius: 10px;
  }
  .overview .clinic_name {
    max-width: 582px;
    margin: 0 auto 46px;
  }
  .overview .clinic_outline {
    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: 20px 40px;
  }
  .overview .clinic_outline > div {
    width: 510px;
    -webkit-column-gap: 34px;
       -moz-column-gap: 34px;
            column-gap: 34px;
    margin-top: 0;
  }
  .overview .clinic_outline > div dt {
    width: 104px;
    padding: 5px 0;
    font-size: 2rem;
    border-radius: 5px;
  }
  .overview .clinic_outline > div.dr {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .overview .clinic_outline > div.dept {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .overview .clinic_outline > div.adr {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .overview .clinic_outline > div.acs {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .overview .clinic_outline > div.tel {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .overview .clinic_outline > div.tel dd {
    font-size: 3.2rem;
  }
  .overview .clinic_outline > div.pak {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .overview .sche {
    margin-top: 38px;
  }
  .overview .sche figcaption {
    width: 104px;
    padding: 0;
    font-size: 2rem;
    border-radius: 5px;
  }
  .overview .sche .timetable {
    margin-top: 10px;
  }
  .overview_map {
    height: 500px;
  }
}
#global_footer {
  padding: 0 0 4rem;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
  background: var(--color-main-dark);
}
#global_footer .footer_wrap {
  display: none;
}
#global_footer .copyright {
  display: block;
  padding: 1.2rem 0 1rem;
  font-size: 1.2rem;
}

@media screen and (min-width: 48em), print {
  #global_footer {
    padding: 0;
  }
  #global_footer .footer_wrap {
    display: block;
    padding: 50px 0;
    font-size: 1.8rem;
  }
  #global_footer .footer_wrap ul {
    width: 710px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -0.4em;
  }
  #global_footer .footer_wrap ul li {
    display: inline-block;
    padding: 0 0.4em;
    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 a:hover {
    text-decoration: underline;
  }
  #global_footer .footer_wrap ul.gnav .sub {
    display: none;
  }
  #global_footer .footer_wrap ul.subnav li {
    margin-top: 28px;
  }
  #global_footer .footer_wrap ul.subnav li:nth-child(6) {
    border-left: none;
  }
  #global_footer .copyright {
    margin-top: 16px;
    padding: 28px 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 47.99em) {
  .js-footfit {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .js-footfit.is_active {
    opacity: 1;
    visibility: visible;
  }
}
.js-pageup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  right: 0;
  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 {
  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: calc(100% - 4rem);
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: var(--color-base-bg);
}
#sp_footer li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#sp_footer li a {
  display: block;
  height: 4rem;
  text-align: center;
}
#sp_footer li.phone a {
  overflow: hidden;
  white-space: nowrap;
  color: var(--color-theme-bn);
  background: var(--color-white);
  border: 1px solid var(--color-theme-bn-hover);
  outline: 1px solid currentColor;
  outline-offset: -4px;
}
#sp_footer li.phone a::before {
  width: 100%;
  font-size: 2.2rem;
  line-height: 4rem;
}
#sp_footer li.rsv a {
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 4rem;
}
#sp_footer li.rsv a::before {
  font-size: 2rem;
}
#sp_footer li.rsv a {
  color: var(--color-white);
  background-color: var(--color-theme-bn);
}
@media screen and (min-width: 48em), print {
  #sp_footer {
    display: none;
  }
}

#pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  padding: 0;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
  background: var(--color-theme-or);
  border: none;
  cursor: pointer;
}
#pageup::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e803';
  font-size: 2.5rem;
  line-height: 0.7;
}
#pageup span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 50px;
    height: 50px;
    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);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  #pageup:hover {
    color: var(--color-white);
    background: var(--color-theme-or-hover);
  }
}
@media print {
  #pageup {
    display: none !important;
  }
}

.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;
}
.l-cf > :last-child, .l-intro > :last-child {
  margin-bottom: 0;
}

@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;
}

@media screen and (min-width: 48em), print {
  .pc_txt_l {
    text-align: left !important;
  }
  .pc_txt_r {
    text-align: right !important;
  }
  .pc_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: 5px 38px 20px 0;
    border-radius: 10px;
  }
  .img_r {
    float: right;
    max-width: 412px;
    margin: 5px 0 20px 38px;
    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: 3rem;
}
article > .l-intro ~ section section {
  margin-top: 2rem;
}
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: 1rem;
}

@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: 50px;
  }
  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: 24px;
  }
}
.tit_01 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}

.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;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
  margin: 0 0 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  text-align: center;
  color: var(--color-main-dark);
}
.tit_02::before, .tit_02::after {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 3.6rem;
  height: 1rem;
  background-image: url(../img/tit_02.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  content: "";
}

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

.tit_04 {
  margin: 0 0 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-theme-ye);
  border-bottom: 0.3rem solid currentColor;
}

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

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

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.2rem;
  }
  .tit_02 {
    margin: 0 0 40px;
    font-size: 3.2rem;
  }
  .tit_02::before, .tit_02::after {
    width: 76px;
    height: 20px;
  }
  .tit_03 {
    margin: 0 0 22px;
    padding-bottom: 8px;
    font-size: 3rem;
    border-bottom-width: 5px;
    -webkit-box-shadow: 0 4px 0 0 var(--color-theme-bn);
            box-shadow: 0 4px 0 0 var(--color-theme-bn);
  }
  .tit_04 {
    margin: 0 0 14px;
    padding-bottom: 6px;
    font-size: 2.8rem;
    border-bottom-width: 5px;
  }
  .tit_05 {
    margin: 0 0 10px;
    padding-bottom: 6px;
    font-size: 2.6rem;
    border-bottom-width: 4px;
  }
  .tit_06 {
    margin: 0 0 10px;
    font-weight: 500;
    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-theme-or);
  line-height: 1;
  content: "●";
}

.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;
}

.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-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2em;
  line-height: 1;
  color: var(--color-theme-or);
}
.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;
}

.tbl_data, .vaccine_tbl {
  width: 100%;
  line-height: 1.3;
  border-collapse: collapse;
}
.tbl_data th, .vaccine_tbl th, .tbl_data td, .vaccine_tbl td {
  padding: 0.5em 0.7em;
  font-weight: normal;
}
@media screen and (min-width: 48em), print {
  .tbl_data th, .vaccine_tbl th, .tbl_data td, .vaccine_tbl td {
    padding: 1em;
  }
}

.tbl_data, .vaccine_tbl {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.tbl_data th, .vaccine_tbl th {
  text-align: left;
  background: var(--color-sub);
  border-bottom: 1px solid var(--color-border);
}
.tbl_data td, .vaccine_tbl td {
  border-bottom: 1px solid var(--color-border);
}
.tbl_data td sup, .vaccine_tbl td sup {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: var(--color-notice);
}

@media screen and (max-width: 47.99em) {
  .sp_frame {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 1.5rem;
  }
  .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 1.5rem 1.3rem;
  border-radius: 0.8rem;
}
.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 30px;
    border-radius: 15px;
  }
}

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

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

.box_notice {
  border: 1px solid var(--color-theme-rd);
}

.box_notes {
  border: 1px solid var(--color-theme-ye);
}

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

.lnk_ref::before {
  content: "≫";
}

.lnkbtn {
  display: flow-root;
  margin-top: 1.5em;
}

.btn_rsv, .btn_detail, .btn_back {
  display: inline-block;
  padding: 0.7em 1em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  border-radius: 5px;
  -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);
}
@media screen and (min-width: 48em), print {
  .btn_rsv, .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, .btn_back {
  font-size: 115%;
  color: var(--color-white);
  background: var(--color-theme-rd);
}
.btn_detail::after, .btn_back::after {
  display: inline-block;
  width: 2em;
  height: 0.5em;
  margin: 0 0.4em 0 0.2em;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  -webkit-transform: skewX(42deg);
          transform: skewX(42deg);
  vertical-align: 0.25em;
  content: "";
}
@media screen and (min-width: 48em), print {
  .btn_detail, .btn_back {
    font-size: 130%;
  }
  .btn_detail::after, .btn_back::after {
    width: 1.8em;
    height: 0.4em;
    margin: 0 0.4em 0 0.3em;
    vertical-align: 0.2em;
  }
  .btn_detail:hover, .btn_back:hover {
    color: var(--color-white);
    background: var(--color-theme-ye);
  }
}

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;
}

.clr-notice {
  color: var(--color-notice, #f00);
}

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

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

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

.marker {
  padding-left: 1em;
  text-indent: -1em;
}
.marker > * {
  text-indent: 0;
}
span.marker {
  display: inline-block;
}

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

.phone a {
  display: inline-block;
}
.phone a::before {
  display: inline-block;
  font-family: "fontello";
  font-weight: normal;
  content: '\e8ec';
}
@media screen and (min-width: 48em), print {
  .phone::before {
    display: inline-block;
    margin-right: 0.1em;
    font-family: "fontello";
    font-weight: normal;
    content: '\e8ec';
    font-size: 78%;
    vertical-align: 0.1em;
  }
  .phone a::before {
    display: none;
  }
}

.rsv a::before {
  display: inline-block;
  margin-right: 0.3em;
  font-family: "fontello";
  font-weight: normal;
  content: '\e82b';
}

.btn_rsv {
  min-width: 8em;
  margin-block: 0.3rem;
  font-size: 120%;
  letter-spacing: 0.05em;
  color: var(--color-white);
  background: var(--color-theme-bn);
}
.btn_rsv::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "fontello";
  font-weight: normal;
  content: '\e82b';
}
@media screen and (min-width: 48em), print {
  .btn_rsv {
    min-width: 200px;
    font-size: 125%;
  }
  .btn_rsv:hover {
    color: var(--color-white);
    background: var(--color-theme-bn-hover);
  }
}

.timetable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  line-height: 1;
}
.timetable caption {
  caption-side: bottom;
  margin-top: 0.5em;
  line-height: 1.3;
  text-align: left;
}
.timetable thead th {
  padding: 0.6em 0;
  font-weight: normal;
  color: var(--color-white);
  background: var(--color-main-dark);
}
.timetable thead th:first-child {
  width: 28%;
  color: var(--color-main-dark);
}
.timetable thead th:last-child {
  width: 12%;
  padding-right: 2%;
  letter-spacing: -0.05em;
}
.timetable tbody th {
  font-weight: normal;
  font-size: 85%;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-main-dark);
}
.timetable tbody td {
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-main-dark);
}
.timetable tbody td:last-child {
  padding-right: 2%;
}

@media screen and (min-width: 48em), print {
  .timetable {
    table-layout: fixed;
  }
  .timetable caption {
    margin-top: 0.9em;
  }
  .timetable tbody th {
    font-size: 100%;
  }
  .timetable tbody td {
    padding: 1.1em 0;
  }
}
.gmap {
  width: 100%;
}
.gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.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;
}

@-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-out forwards;
          animation: fadeIn 2s ease-out forwards;
}
.hero_img.slick-initialized {
  opacity: 1 !important;
}

.hero {
  position: relative;
  padding-inline: 4%;
}
.hero_img {
  overflow: hidden;
  aspect-ratio: 11/7;
  background: var(--color-white);
  border-radius: 50%;
  -webkit-box-shadow: 0.2rem 0.2rem 0.3rem rgba(var(--color-black-rgb), 0.1);
          box-shadow: 0.2rem 0.2rem 0.3rem rgba(var(--color-black-rgb), 0.1);
}
.hero_copy {
  margin: 0.8rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  color: var(--color-main-dark);
  background: transparent;
}
.hero_copy span {
  display: inline-block;
}
.hero_ann {
  margin: 1.5rem 1rem 0;
}
.hero_ann > div {
  margin-top: 0.3rem;
  padding: 0.2rem 0.5rem 0.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  word-spacing: 0.5rem;
  text-align: center;
  color: var(--color-white);
  background: var(--color-ann-bg);
  border-radius: 2em;
}
.hero_ann > div span {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1;
}
.hero_ann > div span.y {
  font-size: 1.5rem;
}
.hero_ann > div span b {
  font-size: 1.8rem;
}
.hero_ann > div em {
  display: inline-block;
  font-weight: 500;
  font-size: 1.7rem;
}
.hero_ann .pre {
  --color-ann-bg: var(--color-theme-rd);
}
.hero_ann .new {
  --color-ann-bg: var(--color-theme-ye);
}

@media screen and (min-width: 48em), print {
  .hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1030px 105px;
    grid-template-columns: 1030px 105px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 1200px;
    height: 700px;
    margin: 0 auto 50px;
    padding-inline: 0;
  }
  .hero_img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    aspect-ratio: 103/70;
    -webkit-box-shadow: 3px 3px 6px rgba(var(--color-black-rgb), 0.1);
            box-shadow: 3px 3px 6px rgba(var(--color-black-rgb), 0.1);
  }
  .hero_copy {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    margin: 0;
    padding-top: 80px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 3rem;
    line-height: 1;
    text-align: left;
    background: transparent;
  }
  .hero_copy span {
    margin-left: 20px;
  }
  .hero_ann {
    position: absolute;
    left: 0;
    bottom: 0;
    margin: 0;
    height: 170px;
  }
  .hero_ann > div {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 170px;
    height: 170px;
    margin: 0 16px 0 0;
    padding: 0 0 0;
    word-spacing: 0;
    vertical-align: top;
    border-radius: 50%;
  }
  .hero_ann > div span {
    font-size: 2rem;
  }
  .hero_ann > div span.y {
    font-size: 2.2rem;
  }
  .hero_ann > div span b {
    font-size: 3.2rem;
  }
  .hero_ann > div em {
    margin-top: 0.25em;
    font-size: 2.4rem;
  }
}
@media (pointer: coarse) and (hover: none) and (min-width: 48em) and (max-width: 1280px) {
  .hero {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
}
.js-news dt {
  cursor: pointer;
}
.js-news dd {
  word-wrap: break-word;
}
.js-news dd a {
  text-decoration: underline;
}
.js-news dd a:hover {
  text-decoration: none;
}
.js-news dd:not(:nth-of-type(-n+3)) {
  display: none;
}

.news {
  padding: 4.5rem 4% 4rem;
}
.news_box {
  padding: 1.7rem 1.5rem 2rem;
  background: var(--color-white);
  border-radius: 1rem;
  -webkit-box-shadow: 0.1rem 0.1rem 0.2rem rgba(var(--color-black-rgb), 0.08);
          box-shadow: 0.1rem 0.1rem 0.2rem rgba(var(--color-black-rgb), 0.08);
}
.news_box dt {
  font-size: 1.6rem;
  color: var(--color-main);
}
.news_box dt::before {
  display: inline-block;
  margin-right: 0.5rem;
  font-family: "fontello";
  font-weight: normal;
  content: '\e80a';
  line-height: 1;
}
.news_box dt.is_open::before {
  content: "\e80d";
}
.news_box dt ~ dt {
  margin-top: 1em;
}
.news_box dd {
  padding-top: 0.5rem;
}
.news .banner {
  margin-top: 1.8rem;
  text-align: center;
}
.news .banner a {
  display: inline-block;
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.1rem rgba(var(--color-black-rgb), 0.16));
          filter: drop-shadow(0.1rem 0.1rem 0.1rem rgba(var(--color-black-rgb), 0.16));
  margin-bottom: 1.3rem;
}

@media screen and (min-width: 48em), print {
  .news {
    padding: 90px 0 105px;
  }
  .news .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;
  }
  .news .tit_02 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 180px;
  }
  .news .tit_02::after {
    display: none;
  }
  .news_box {
    width: 1000px;
    padding: 40px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 4px rgba(var(--color-black-rgb), 0.16);
            box-shadow: 2px 2px 4px rgba(var(--color-black-rgb), 0.16);
  }
  .news_box dt {
    font-size: 2rem;
  }
  .news_box dt::before {
    margin-right: 0.5rem;
    font-size: 1.5rem;
  }
  .news_box dt ~ dt {
    margin-top: 1.3em;
  }
  .news_box dd {
    padding-top: 0;
  }
  .news .banner {
    width: 1200px;
    margin: 10rem auto 0;
  }
  .news .banner a {
    -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));
    margin-top: 0;
  }
  .news .banner a:first-child {
    margin-right: 5rem;
  }
  .news .banner a:hover {
    opacity: 0.7;
  }
}
.treatment {
  --color-bg-treatment: #faede4;
  padding: 4rem 4% 4.5rem;
  background-color: var(--color-white);
  background-image: radial-gradient(var(--color-bg-treatment) 10%, transparent 13%), radial-gradient(var(--color-bg-treatment) 10%, transparent 13%);
  background-repeat: repeat;
  background-position: 0 0, 1.5rem 1.5rem;
  background-size: 3rem 3rem;
}
.treatment_lst {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.7rem 2.3rem;
  margin-top: 3rem;
}
.treatment_lst > li {
  width: 43%;
}
.treatment_lst > li a {
  --color-bg-treatlink: #fefaf5;
  display: block;
  aspect-ratio: 1/1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
  word-break: keep-all;
  text-align: center;
  color: var(--color-main-dark);
  background: var(--color-bg-treatlink);
  border: 2px solid var(--color-sub);
  border-radius: 50%;
  -webkit-box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.1);
          box-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.1);
}
.treatment_lst > li a::before {
  display: block;
  width: 40%;
  aspect-ratio: 1/1;
  margin: 1.6rem auto 0.8rem;
  content: "";
}
.treatment_lst .a_pediatrics::before {
  background-image: url(../img/index/treatment_pediatrics.svg);
}
.treatment_lst .a_infection::before {
  background-image: url(../img/index/treatment_infection.svg);
}
.treatment_lst .a_allergy::before {
  background-image: url(../img/index/treatment_allergy.svg);
}
.treatment_lst .a_short_stature::before {
  background-image: url(../img/index/treatment_s_s.svg);
}
.treatment_lst .a_early_onset::before {
  background-image: url(../img/index/treatment_e_o.svg);
}
.treatment_lst .a_orthostatic_hypotension::before {
  background-image: url(../img/index/treatment_o_h.svg);
}
.treatment_lst .a_constipation::before {
  background-image: url(../img/index/treatment_constipation.svg);
}
.treatment_lst .a_vaccination::before {
  background-image: url(../img/index/treatment_vaccination.svg);
}
.treatment_lst .a_checkup::before {
  background-image: url(../img/index/treatment_checkup.svg);
}

@media screen and (min-width: 48em), print {
  .treatment {
    padding: 80px 0 104px;
    background-position: 5px 5px, 30px 30px;
    background-size: 50px 50px;
  }
  .treatment_lst {
    gap: 30px 50px;
    margin-top: 0;
  }
  .treatment_lst > li {
    width: 200px;
  }
  .treatment_lst > li a {
    position: relative;
    font-size: 2rem;
    border-width: 3px;
    -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);
    -webkit-transition: 0.5s 0.3s;
    transition: 0.5s 0.3s;
  }
  .treatment_lst > li a::before {
    width: 75px;
    margin: 30px auto 8px;
    -webkit-transition: 0.5s 0.3s;
    transition: 0.5s 0.3s;
  }
  .treatment_lst > li a::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-bg-treatlink);
    border-radius: 50%;
    content: "";
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .treatment_lst > li a:hover {
    color: var(--color-main);
    border-color: #ffcb7c;
    -webkit-box-shadow: 0 0 3px rgba(var(--color-black-rgb), 0.1);
            box-shadow: 0 0 3px rgba(var(--color-black-rgb), 0.1);
  }
  .treatment_lst > li a:hover::before {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .treatment_lst > li a:hover::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    border-color: #fff3b0;
  }
}
.vision {
  padding: 4rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-image: url(../img/index/vision_bg_l.webp), url(../img/index/vision_bg_r.webp), url(../img/bg_character.webp);
  background-repeat: no-repeat;
  background-position: left -15% top 50%, right -25% top 80%, left 50% bottom 1rem;
  background-size: 35% auto, 35% auto, 60% auto;
}
.vision_msg {
  --color-msg-bg: #fff0d9;
  margin-inline: 1.5rem;
  padding: 2.2rem 2.5rem 2.8rem;
  background-color: var(--color-msg-bg);
  background-image: url(../img/index/vision_msg_l.webp), url(../img/index/vision_msg_r.webp);
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
  background-size: 15% auto;
  border-radius: 1rem;
}
.vision_msg .tit {
  margin-bottom: 1.2rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--color-main);
  text-align: center;
}
.vision_msg .txt {
  margin-bottom: 0;
  text-align: justify;
  line-height: 1.8;
}
.vision_lst {
  margin-top: 1.5rem;
  padding: 2rem 4.5rem 2rem;
}
.vision_lst .consult dt {
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  border-bottom: 2px solid currentColor;
}
.vision_lst .consult dt ~ dt {
  margin-top: 1.5rem;
}
.vision_lst .consult dt:nth-of-type(1) {
  color: var(--color-theme-rd);
}
.vision_lst .consult dt:nth-of-type(2) {
  color: var(--color-theme-or);
}
.vision_lst .consult dt:nth-of-type(3) {
  color: var(--color-theme-bn);
}
.vision_lst .consult dd {
  text-align: justify;
}
.vision .event-sliders {
  position: relative;
  min-height: 120vw;
}
.vision .slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  position: absolute;
  inset: 0;
}
.vision .slider.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
.vision {
  /* タブの簡易スタイル */
}
.vision .event-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  margin-bottom: 1.5em;
}
.vision .event-tab {
  padding: 0.5em 1em 0.6em;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: bold;
  border: 1px solid var(--color-theme-rd);
  color: var(--color-theme-rd);
  background: #fff;
  cursor: pointer;
}
.vision .event-tab.is-active {
  color: var(--color-white);
  background: var(--color-theme-rd);
}

@media screen and (min-width: 48em), print {
  .vision {
    padding: 98px 0;
    background-position: calc(50% - 772px) 52px, calc(50% + 772px) 52px, left 50% bottom 95px;
    background-size: auto;
  }
  .vision_msg {
    margin-top: 45px;
    margin-inline: 0;
    padding: 38px 235px 53px;
    background-position: left 40px bottom 50px, right 40px bottom 50px;
    background-size: auto;
    border-radius: 10px;
  }
  .vision_msg .tit {
    margin-bottom: 26px;
    font-size: 2.6rem;
  }
  .vision_msg .txt {
    font-size: 2rem;
    line-height: 1.9;
  }
  .vision_lst {
    margin-top: 55px;
    padding: 10px 0;
    background-image: url(../img/index/vision_consult_l.webp), url(../img/index/vision_consult_r.webp);
    background-repeat: no-repeat;
    background-position: left top, right top;
    background-size: auto;
  }
  .vision_lst .consult {
    width: 582px;
    margin-inline: auto;
  }
  .vision_lst .consult dt {
    margin-bottom: 6px;
    padding-bottom: 6px;
    font-size: 2.4rem;
  }
  .vision_lst .consult dt ~ dt {
    margin-top: 38px;
  }
  .vision_lst .consult dd {
    font-size: 2rem;
    line-height: 1.5;
  }
  .vision .event-sliders {
    min-height: 700px;
  }
  .vision .event-tab {
    padding: 0.7em 1.5em 0.8em;
    font-size: 2.2rem;
  }
}
.feature {
  --color-bg-feature: #f4eac4;
  padding: 4rem 4% 5rem;
  background-color: var(--color-white);
  background-image: radial-gradient(var(--color-bg-feature) 10%, transparent 13%), radial-gradient(var(--color-bg-feature) 10%, transparent 13%);
  background-repeat: repeat;
  background-position: 0 0, 1.5rem 1.5rem;
  background-size: 3rem 3rem;
}
.feature_box {
  counter-reset: fNum 0;
  padding-inline: 0.5rem;
}
.feature_box > li {
  counter-increment: fNum 1;
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border-radius: 1.5rem;
}
.feature_box > li::after {
  position: absolute;
  top: 12.5rem;
  left: 0.5rem;
  font-family: "Courgette", cursive;
  font-size: 5rem;
  line-height: 1;
  content: counter(fNum, decimal-leading-zero);
  text-shadow: 0.2rem 0.2rem 0.2rem rgba(var(--color-black-rgb), 0.16);
}
.feature_box > li section {
  margin-inline: 1rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
}
.feature_box > li section .tit {
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1.2;
  text-align: center;
}
.feature_box > li section .txt {
  margin-bottom: 0;
  line-height: 1.6;
}
.feature_box > li:nth-of-type(odd), .feature_box > li:nth-of-type(even) {
  padding-top: 15rem;
  background-position: center top;
}
.feature_box > li:nth-of-type(3n +1) {
  background-color: var(--color-theme-rd);
}
.feature_box > li:nth-of-type(3n +1) section {
  text-shadow: 0 0 1px var(--color-theme-rd);
  background-color: rgba(var(--color-theme-rd-rgb), 0.85);
}
.feature_box > li:nth-of-type(3n +2) {
  background-color: var(--color-theme-or);
}
.feature_box > li:nth-of-type(3n +2) section {
  text-shadow: 0 0 1px var(--color-theme-or);
  background-color: rgba(var(--color-theme-or-rgb), 0.85);
}
.feature_box > li:nth-of-type(3n +3) {
  background-color: var(--color-theme-bn);
}
.feature_box > li:nth-of-type(3n +3) section {
  text-shadow: 0 0 1px var(--color-theme-bn);
  background-color: rgba(var(--color-theme-bn-rgb), 0.85);
}
.feature_box > li.box_specialist {
  background-image: url(../img/index/feature_specialist.webp);
}
.feature_box > li.box_checkup {
  background-image: url(../img/index/feature_checkup.webp);
}
.feature_box > li.box_ifcontrol {
  background-image: url(../img/index/feature_ifcontrol.webp);
}
.feature_box > li.box_access {
  background-image: url(../img/index/feature_access.webp);
}
.feature_box > li.box_parking {
  background-image: url(../img/index/feature_parking.webp);
}
.feature_box > li.box_saturday {
  background-image: url(../img/index/feature_saturday.webp);
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 86px 0 99px;
    background-position: 5px 5px, 30px 30px;
    background-size: 50px 50px;
  }
  .feature_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px 36px;
    padding-inline: 0;
  }
  .feature_box > li {
    width: 376px;
    margin-top: 0;
    border-radius: 30px;
  }
  .feature_box > li::after {
    top: 50%;
    left: 50%;
    font-size: 8rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-shadow: 2px 2px 2px rgba(var(--color-black-rgb), 0.16);
  }
  .feature_box > li section {
    min-height: 270px;
    margin-inline: 0;
    padding: 36px 33px;
    border-radius: 0;
  }
  .feature_box > li section .tit {
    margin-bottom: 20px;
    font-size: 2.6rem;
    text-align: center;
  }
  .feature_box > li section .txt {
    font-size: 2rem;
  }
  .feature_box > li:nth-of-type(odd) {
    padding: 0 0 270px;
    background-position: center bottom;
  }
  .feature_box > li:nth-of-type(even) {
    padding: 270px 0 0;
    background-position: center top;
  }
}
body#page_index .slider {
  visibility: hidden;
  width: auto;
}
body#page_index .slider .slider-panel .slick-slide figcaption {
  display: block;
  padding: 0.5em 0.2em 0.4em;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
  background: var(--color-main);
}
body#page_index .slider .slider-panel .slick-dots {
  font-size: 1.2rem;
}
body#page_index .slider .slider-panel .slick-dots li.slick-active button {
  background: var(--color-main);
}
body#page_index .slider .slider-nav .slick-list .slick-slide img {
  -webkit-filter: opacity(0.4);
          filter: opacity(0.4);
}
body#page_index .slider .slider-nav .slick-list .slick-slide.slick-current img {
  outline: 4px solid var(--color-main);
  outline-offset: -4px;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
@media screen and (max-width: 47.99em) {
  body#page_index .slider .slider-panel .slick-prev::before, body#page_index .slider .slider-panel .slick-next::before {
    color: var(--color-main);
    background: radial-gradient(var(--color-white) 50%, transparent 50%);
  }
}
@media screen and (min-width: 48em), print {
  body#page_index .slider {
    width: 750px;
    margin: 0 auto;
  }
  body#page_index .slider .slider-panel .slick-slide figcaption {
    font-size: 2.4rem;
  }
  body#page_index .slider .slider-panel .slick-prev, body#page_index .slider .slider-panel .slick-next {
    width: 5rem;
    height: 5rem;
  }
  body#page_index .slider .slider-panel .slick-prev::before, body#page_index .slider .slider-panel .slick-next::before {
    font-size: 5rem;
    color: var(--color-main);
  }
  body#page_index .slider .slider-panel .slick-prev:hover:before, body#page_index .slider .slider-panel .slick-prev:focus:before, body#page_index .slider .slider-panel .slick-next:hover:before, body#page_index .slider .slider-panel .slick-next:focus:before {
    opacity: 1;
  }
  body#page_index .slider .slider-panel .slick-prev {
    left: -60px;
  }
  body#page_index .slider .slider-panel .slick-next {
    right: -60px;
  }
  body#page_index .slider .slider-panel .slick-dots {
    font-size: 1.4rem;
  }
}

.heading {
  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: 16rem;
  margin: 0 4%;
  padding: 10rem 3rem 1rem;
  text-align: center;
  background-color: var(--color-white);
  background-image: url(../img/tit_heading.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 50%;
  -webkit-box-shadow: 0.2rem 0.2rem 0.4rem rgba(var(--color-black-rgb), 0.1);
          box-shadow: 0.2rem 0.2rem 0.4rem rgba(var(--color-black-rgb), 0.1);
}
.heading h1 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.2;
  color: var(--color-main-dark);
}
@media screen and (min-width: 48em), print {
  .heading {
    width: 1200px;
    height: 500px;
    margin: 0 auto;
    padding: 370px 160px 50px;
    background-size: auto;
    -webkit-box-shadow: 3px 3px 6px rgba(var(--color-black-rgb), 0.1);
            box-shadow: 3px 3px 6px rgba(var(--color-black-rgb), 0.1);
  }
  .heading h1 {
    font-size: 3.6rem;
  }
}

.breadcrumbs {
  padding: 0.8rem 4%;
  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 {
    position: relative;
    top: -50px;
    height: 50px;
    padding: 28px 0 0;
    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: 1080px;
    margin: 0 auto;
    padding: 80px 0 120px;
  }
}

body#page_doctor .doctor_greeting .img_r {
  max-width: 60%;
}
body#page_doctor .doctor_greeting .signature {
  margin-bottom: 0;
  text-align: right;
  line-height: 1.3;
}
body#page_doctor .doctor_greeting .signature span {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 118%;
}
body#page_doctor .doctor_profile .bio {
  margin: 2.5rem 0;
}
body#page_doctor .doctor_profile .bio dl {
  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;
  row-gap: 0.4em;
  line-height: 1.3;
}
body#page_doctor .doctor_profile .bio dl dt {
  width: 4.5em;
  white-space: nowrap;
}
body#page_doctor .doctor_profile .bio dl dd {
  width: calc(100% - 5em);
}
@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_greeting .signature span {
    font-size: 130%;
  }
  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;
    margin-top: 50px;
  }
  body#page_doctor .doctor_profile > section {
    width: 500px;
  }
  body#page_doctor .doctor_profile .bio {
    margin: 0;
  }
}

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-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
  background: var(--color-main);
}
body#page_clinic .slider .slider-panel .slick-dots {
  font-size: 1.2rem;
}
body#page_clinic .slider .slider-panel .slick-dots li.slick-active button {
  background: var(--color-main);
}
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);
  outline-offset: -4px;
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
@media screen and (max-width: 47.99em) {
  body#page_clinic .slider .slider-panel .slick-prev::before, body#page_clinic .slider .slider-panel .slick-next::before {
    color: var(--color-main);
    background: radial-gradient(var(--color-white) 50%, transparent 50%);
  }
}
@media screen and (min-width: 48em), print {
  body#page_clinic .slider {
    width: 750px;
    margin: 0 auto;
  }
  body#page_clinic .slider .slider-panel .slick-slide figcaption {
    font-size: 2.4rem;
  }
  body#page_clinic .slider .slider-panel .slick-prev, body#page_clinic .slider .slider-panel .slick-next {
    width: 5rem;
    height: 5rem;
  }
  body#page_clinic .slider .slider-panel .slick-prev::before, body#page_clinic .slider .slider-panel .slick-next::before {
    font-size: 5rem;
    color: var(--color-main);
  }
  body#page_clinic .slider .slider-panel .slick-prev:hover:before, body#page_clinic .slider .slider-panel .slick-prev:focus:before, body#page_clinic .slider .slider-panel .slick-next:hover:before, body#page_clinic .slider .slider-panel .slick-next:focus:before {
    opacity: 1;
  }
  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-panel .slick-dots {
    font-size: 1.4rem;
  }
}

body#page_first .reservation .button {
  text-align: center;
}
body#page_first .bring_dept > section ~ section {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em), print {
  body#page_first .reservation {
    display: flow-root;
  }
  body#page_first .reservation .button {
    text-align: left;
  }
  body#page_first .bring_dept > section ~ section {
    margin-top: 40px;
  }
}

body#page_reservation .reservation_flex section {
  background: var(--color-sub);
  padding: 1rem;
}
@media screen and (min-width: 48em), print {
  body#page_reservation .reservation_flex {
    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;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  body#page_reservation .reservation_flex > section {
    width: 500px;
    max-width: 48%;
    padding: 2rem 3rem;
  }
}

body#page_access .timetable {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body#page_access .timetable tbody {
  background: var(--color-white);
}
body#page_access .timetable tbody th {
  font-size: 95%;
  font-weight: 500;
}
body#page_access .timetable tbody td {
  font-weight: 500;
}
body#page_access .access_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
}
body#page_access .access_info dt {
  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: 7rem;
  padding: 0.5rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: var(--color-theme-or);
  border-radius: 0.5rem;
}
body#page_access .access_info dd {
  width: calc(100% - 8.5rem);
  padding: 0.5rem 0;
}
body#page_access .access_info dd img {
  margin-block: 0.7rem;
}
@media screen and (max-width: 47.99em) {
  body#page_access .access_info .parking {
    width: 100%;
  }
  body#page_access .access_info .parking + dd {
    width: 100%;
    padding: 0;
  }
}
body#page_access .gmap {
  position: relative;
  top: -3.5rem;
  height: 35rem;
  margin: 2rem 0 0;
}
body#page_access .gmap::before {
  display: block;
  font-family: "fontello";
  font-weight: normal;
  content: '\e910';
  font-size: 4.5rem;
  line-height: 0.8;
  text-align: right;
  color: var(--color-sub);
}
@media screen and (min-width: 48em), print {
  body#page_access .timetable {
    font-size: 2.2rem;
  }
  body#page_access .timetable tbody th {
    font-size: 100%;
  }
  body#page_access .timetable tbody td {
    font-size: 2.4rem;
  }
  body#page_access .access_info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px 3%;
    width: 100%;
    font-size: 2rem;
    background-image: url(../img/bg_character.webp);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 200px;
  }
  body#page_access .access_info dt {
    display: block;
    width: 20%;
    border-radius: 5px;
  }
  body#page_access .access_info dd {
    width: 75%;
    padding: 5px 0;
    word-spacing: 0.5em;
    line-height: inherit;
  }
  body#page_access .gmap {
    top: 0;
    height: 550px;
    margin-top: 30px;
  }
  body#page_access .gmap::before {
    display: none;
  }
}

.vaccine_tbl thead th {
  white-space: nowrap;
}
.vaccine_tbl thead th:first-child {
  width: 28%;
}
.vaccine_tbl tbody th {
  background: none;
}
.vaccine_tbl tbody th span {
  display: block;
}
.vaccine_tbl[data-type=last] thead th:nth-last-child(-n+1) {
  width: 12%;
  text-align: center;
}
.vaccine_tbl[data-type=last] tbody td:nth-last-child(-n+1) {
  text-align: center;
  padding-inline: 0;
}
.vaccine_tbl[data-type=last2] thead th:nth-last-child(-n+2) {
  width: 12%;
  text-align: center;
}
.vaccine_tbl[data-type=last2] tbody td:nth-last-child(-n+2) {
  text-align: center;
}
.vaccine_tbl_footnote {
  margin-top: 1rem;
}
.vaccine_tbl_footnote li ~ li {
  margin-top: 0.3em;
}
.vaccine_tbl_footnote li i {
  display: inline-block;
  margin-right: 0.3em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: var(--color-notice);
}

body#page_404 .notfound {
  padding: 3rem 1rem;
  text-align: center;
}
body#page_404 .notfound .btn_back {
  margin-top: 2em;
}
/*# sourceMappingURL=style.css.map */