@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(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

: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)) {
  -webkit-clip-path: inset(50%) !important;
          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.5rem;
  --pc-header-height: 120px;
  --pc-l-height: 1.75;
  --sp-pd-side: 4%;
  --pc-pd-side: 24px;
  --color-base-txt: #333;
  --color-base-txt-rgb: 51,51,51;
  --color-base-bg: #fff;
  --color-base-bg-rgb: 255,255,255;
  --color-main-bg: #f5f5f7;
  --color-main-border01: #d9d9db;
  --color-main-border02: #c7c7c9;
  --color-main-note: #b1b1b3;
  --color-main-dull: #a8adb0;
  --color-main-dull-rgb: 168,173,176;
  --color-main-dark: #070303;
  --color-sub: #f1842a;
  --color-sub-rgb: 241,132,42;
  --color-sub-bright: #ffa052;
  --color-sub-bright-rgb: 255,160,82;
  --color-sub-lite: #f5dac6;
  --color-sub-pale: #fef3ea;
  --color-sub-pale-rgb: 254,243,234;
  --color-heading: #b8ada0;
  --color-link: #1775d3;
  --color-attention: #d53d09;
  --color-highlight: #fde1c9;
  --color-black: #000;
  --color-black-rgb: 0,0,0;
  --color-gray: #676767;
  --color-gray-rgb: 103,103,103;
  --color-white: #fff;
  --color-white-rgb: 255,255,255;
  --color-gold: #D8B28E;
  --color-gold-rgb: 216, 178, 142;
  --color-darkgold: #B18C68;
  --color-darkgold-rgb: 177, 140, 104;
  --color-grayblue: #77A8C2;
  --color-grayblue-rgb: 119, 168, 194;
  --color-lightblue: #94BFD4;
  --color-lightblue-rgb: 148, 191, 212;
}

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

body {
  letter-spacing: 0.03em;
  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;
    letter-spacing: 0.05em;
  }
  a, button {
    -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 .header_wrap .logo {
  width: 75%;
  height: 6rem;
  margin-inline: 1rem;
  padding-top: 0.6rem;
}
#global_header .header_wrap .logo a {
  display: block;
}
#global_header .header_wrap .clinic_info {
  font-weight: 500;
}
@media screen and (max-width: 47.99em) {
  #global_header .header_wrap .clinic_info .tel {
    display: none;
  }
  #global_header .header_wrap .clinic_info .adr {
    display: none;
  }
  body#page_index #global_header .header_wrap .clinic_info .adr {
    display: block;
    padding-block: 0.3rem;
    font-size: 1.2rem;
    word-spacing: 0.5em;
    text-align: center;
    color: var(--color-white);
    background: var(--color-sub);
    border-top: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
  }
}

@media screen and (min-width: 48em), print {
  #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: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    margin-inline: auto;
    padding: 2px 24px;
  }
  #global_header .header_wrap .logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 514px;
    height: 96px;
    margin-inline: 0;
    padding-top: 0;
  }
  #global_header .header_wrap .clinic_info {
    min-width: 345px;
    padding-top: 6px;
    text-align: right;
  }
  #global_header .header_wrap .clinic_info .tel {
    font-family: "Jost", sans-serif;
    font-size: 3.8rem;
    line-height: 1;
    color: var(--color-sub);
  }
  #global_header .header_wrap .clinic_info .tel::before {
    display: inline-block;
    margin-right: 0.4em;
    font-size: 1.8rem;
    content: "TEL /";
  }
  #global_header .header_wrap .clinic_info .adr {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}
@media print {
  #global_header {
    padding-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;
    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: var(--color-main-bg);
  }
  .js-sp_box {
    height: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
    -webkit-transition: 0.5s ease;
    transition: 0.5s 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: static;
  }
  .js-pc_sticky.is_sticky {
    position: fixed;
    inset: 0 0 auto;
    z-index: 5;
    width: 100%;
  }
}
@media print {
  .js-pc_sticky.is_sticky {
    position: relative !important;
  }
}
#global_nav {
  width: 100%;
  font-weight: 500;
}
#global_nav .gnav > li > a, #global_nav .gnav > li button {
  width: 100%;
}
#global_nav .gnav > li > a::after, #global_nav .gnav > li button::after {
  color: var(--color-main-note);
  content: attr(data-eng);
}
#global_nav .subnav {
  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;
}
#global_nav .subnav li {
  min-width: 8em;
  max-width: 50%;
}
#global_nav .subnav li::before {
  display: inline-block;
  margin-right: 0.8rem;
  font-family: none;
  font-weight: normal;
  content: "－";
  color: var(--color-sub);
}
#global_nav .subnav li a {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 47.99em) {
  #global_nav #sp_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 6rem;
    height: 6rem;
    padding: 1rem 1rem 0.5rem;
    text-align: center;
    color: var(--color-base-txt);
    background: var(--color-main-bg);
    -webkit-box-shadow: 0 0 3px 1px rgba(var(--color-black-rgb), 0.1);
            box-shadow: 0 0 3px 1px rgba(var(--color-black-rgb), 0.1);
  }
  @-webkit-keyframes hamburger_line01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(0.75rem) rotate(0);
              transform: translateY(0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0.75rem) rotate(-45deg);
              transform: translateY(0.75rem) rotate(-45deg);
    }
  }
  @keyframes hamburger_line01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(0.75rem) rotate(0);
              transform: translateY(0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0.75rem) rotate(-45deg);
              transform: translateY(0.75rem) rotate(-45deg);
    }
  }
  @-webkit-keyframes hamburger_line02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-0.75rem) rotate(0);
              transform: translateY(-0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-0.75rem) rotate(45deg);
              transform: translateY(-0.75rem) rotate(45deg);
    }
  }
  @keyframes hamburger_line02 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-0.75rem) rotate(0);
              transform: translateY(-0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-0.75rem) rotate(45deg);
              transform: translateY(-0.75rem) rotate(45deg);
    }
  }
  @-webkit-keyframes hamburger_line01_revert {
    0% {
      -webkit-transform: translateY(0.75rem) rotate(-45deg);
              transform: translateY(0.75rem) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(0.75rem) rotate(0);
              transform: translateY(0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes hamburger_line01_revert {
    0% {
      -webkit-transform: translateY(0.75rem) rotate(-45deg);
              transform: translateY(0.75rem) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(0.75rem) rotate(0);
              transform: translateY(0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @-webkit-keyframes hamburger_line02_revert {
    0% {
      -webkit-transform: translateY(-0.75rem) rotate(45deg);
              transform: translateY(-0.75rem) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(-0.75rem) rotate(0);
              transform: translateY(-0.75rem) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
              transform: translateY(0) rotate(0);
    }
  }
  @keyframes hamburger_line02_revert {
    0% {
      -webkit-transform: translateY(-0.75rem) rotate(45deg);
              transform: translateY(-0.75rem) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(-0.75rem) rotate(0);
              transform: translateY(-0.75rem) 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: 3rem;
    height: 2px;
    margin: 3px 0;
    background: var(--color-main-dark);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    content: "";
  }
  #global_nav #sp_btn.hamburger::after {
    font-family: initial;
    font-size: 1.2rem;
    font-family: "Jost", sans-serif;
    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 {
    color: var(--color-white);
    background: var(--color-sub);
  }
  #global_nav #sp_btn.hamburger.close::after {
    content: "CLOSE";
  }
  #global_nav #sp_btn.hamburger.close .hamburger_line::before, #global_nav #sp_btn.hamburger.close .hamburger_line::after, #global_nav #sp_btn.hamburger.close .hamburger_line i {
    background: var(--color-white);
  }
  #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: 1.5rem;
    left: 4%;
    overflow-y: auto;
    width: 92%;
    max-height: 88svh;
    padding: 1.5rem 1.5rem 2rem;
    font-size: 1.5rem;
    color: var(--color-base-txt);
    background: rgba(var(--color-white-rgb), 0.7);
  }
  #global_nav .gnav::before {
    display: block;
    width: 80%;
    height: 5.5rem;
    margin-bottom: 1.5rem;
    background-image: url(../img/logo.svg);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: contain;
    content: "";
  }
  #global_nav .gnav > li {
    margin-bottom: 1.6rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(var(--color-sub-rgb), 0.3);
    -webkit-box-shadow: 0 2px 0 0 rgba(var(--color-sub-rgb), 0.1);
            box-shadow: 0 2px 0 0 rgba(var(--color-sub-rgb), 0.1);
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0 0.5rem;
    padding: 0.6rem 1rem 0.6rem 0.5rem;
  }
  #global_nav .gnav > li > a::before, #global_nav .gnav > li button::before {
    font-family: "Jost", sans-serif;
    font-weight: 700;
    content: "－";
    color: var(--color-sub-bright);
  }
  #global_nav .gnav > li > a::after, #global_nav .gnav > li button::after {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 1.2rem;
    text-align: right;
  }
  #global_nav .gnav > li.sub .sub_btn::before {
    content: "＋";
  }
  #global_nav .gnav > li.sub .sub_btn.is_open::before {
    content: "－";
  }
  #global_nav .gnav > li.sub .sub_box {
    padding: 1.4rem 2.2rem;
    background: var(--color-sub-pale);
    border-radius: 0.4rem;
  }
  #global_nav .gnav > li.sub .subnav {
    gap: 0.8rem 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 48em), print {
  #global_nav {
    color: var(--color-base-txt);
    background: var(--color-base-bg);
  }
  #global_nav #sp_btn {
    display: none;
  }
  #global_nav .gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 1200px;
    height: 92px;
    margin-inline: auto;
    padding-block: 23px;
    font-size: 1.8rem;
  }
  #global_nav .gnav::before {
    display: block;
    width: 10px;
    height: 35px;
    border-left: 1px solid var(--color-main-border01);
    -webkit-transform: skewX(-30deg);
            transform: skewX(-30deg);
    content: "";
  }
  #global_nav .gnav > li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 5px;
  }
  #global_nav .gnav > li::after {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    display: block;
    width: 10px;
    height: 35px;
    border-right: 1px solid var(--color-main-border01);
    -webkit-transform: skewX(-30deg);
            transform: skewX(-30deg);
    content: "";
  }
  #global_nav .gnav > li > a, #global_nav .gnav > li button {
    display: block;
    text-align: center;
  }
  #global_nav .gnav > li > a::after, #global_nav .gnav > li button::after {
    display: block;
    font-size: 1.2rem;
  }
  #global_nav .gnav > li > a:hover, #global_nav .gnav > li > a:focus, #global_nav .gnav > li button:hover, #global_nav .gnav > li button:focus {
    color: var(--color-sub);
  }
  #global_nav .gnav > li.hn {
    display: none;
  }
  #global_nav .gnav > li.sub {
    position: relative;
  }
  #global_nav .gnav > li.sub .sub_btn.is_open {
    color: var(--color-sub);
  }
  #global_nav .gnav > li.sub .sub_box {
    position: absolute;
    top: 67px;
    left: 50%;
    z-index: 1;
    width: 320px;
    padding: 24px 32px;
    background: var(--color-base-bg);
    border-radius: 4px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #global_nav .gnav > li .subnav {
    gap: 14px 0;
    font-size: 1.4rem;
  }
  #global_nav .gnav > li .subnav li a:hover, #global_nav .gnav > li .subnav li a:focus {
    color: var(--color-sub);
  }
}
body:not(#page_index) .overview {
  border-top: 1px solid var(--color-main-border01);
}
.overview .wrap {
  padding: 3.5rem 4% 3rem;
  font-size: 1.4rem;
}
.overview .wrap .tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.6em 0;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.8rem;
}
.overview .wrap .tit::before {
  display: block;
  width: 1.2em;
  height: 1.4em;
  border-left: 1px solid var(--color-main-border02);
  -webkit-transform: skew(-30deg) translateX(0.5em);
          transform: skew(-30deg) translateX(0.5em);
  content: "";
}
.overview .wrap .tit::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  line-height: 0.8;
  color: var(--color-sub);
  content: attr(data-eng);
}
.overview .wrap .name {
  font-weight: 700;
  font-size: 1.9rem;
}
.overview .wrap .name i {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.1rem 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--color-sub);
  background: rgba(var(--color-sub-rgb), 0.1);
}
.overview .wrap .dr {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.6rem;
}
.overview .wrap .dr dt {
  display: inline-block;
}
.overview .wrap .dr dt::after {
  display: inline-block;
  margin-left: 0.3em;
  color: var(--color-main-border02);
  content: "/";
}
.overview .wrap .dr dd {
  display: inline-block;
}
.overview .wrap .dr dd i {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 1.2rem;
  color: var(--color-sub);
}
.overview .wrap .adr {
  margin-top: 1.5rem;
}
.overview .wrap .tel dt {
  display: inline-block;
}
.overview .wrap .tel dt::after {
  display: inline-block;
  margin-left: 0.3em;
  content: "/";
}
.overview .wrap .tel dd {
  display: inline-block;
}
.overview .wrap .acs,
.overview .wrap .parking {
  margin-top: 1.5rem;
}
.overview .wrap .acs dt,
.overview .wrap .parking dt {
  font-weight: 700;
  font-size: 1.6rem;
}
.overview .wrap .acs dt::before,
.overview .wrap .parking dt::before {
  display: inline-block;
  width: 1em;
  margin-right: 0.2em;
  font-family: "fontello";
  font-weight: normal;
  font-size: 125%;
  text-align: center;
  color: var(--color-sub);
}
.overview .wrap .acs dd,
.overview .wrap .parking dd {
  font-size: 1.35rem;
}
.overview .wrap .acs dt::before {
  content: "\e80d";
}
.overview .wrap .parking dt::before {
  content: "\e80e";
}
.overview .wrap .timetable {
  margin-top: 2rem;
}
.overview .wrap .banner {
  margin-top: 4rem;
}
.overview .gmap {
  width: 100%;
  height: 32rem;
}
.overview .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media screen and (min-width: 48em), print {
  .overview .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;
    padding: 96px 24px;
  }
  .overview .wrap .tit {
    width: 225px;
    gap: 14px 0;
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .overview .wrap .tit::after {
    margin-right: 0;
    font-size: 5.6rem;
  }
  .overview .wrap section.wrap_col {
    width: 340px;
  }
  .overview .wrap section.wrap_col .name {
    font-size: 1.8rem;
  }
  .overview .wrap section.wrap_col .name i {
    margin-top: 8px;
    padding: 2px 8px;
  }
  .overview .wrap section.wrap_col .dr {
    margin-top: 8px;
  }
  .overview .wrap section.wrap_col .adr {
    margin-top: 16px;
  }
  .overview .wrap section.wrap_col .tel {
    margin-top: 3px;
  }
  .overview .wrap section.wrap_col .acs,
  .overview .wrap section.wrap_col .parking {
    margin-top: 14px;
  }
  .overview .wrap section.wrap_col .acs dd,
  .overview .wrap section.wrap_col .parking dd {
    font-size: 1.2rem;
  }
  .overview .wrap div.wrap_col {
    width: 470px;
  }
  .overview .wrap div.wrap_col .timetable {
    margin-top: 0;
  }
  .overview .wrap div.wrap_col .banner {
    margin-top: 32px;
  }
  .overview .gmap {
    height: 400px;
  }
}
#global_footer {
  padding: 0 0 4rem;
  background: var(--color-main-bg);
}
#global_footer .footer_wrap {
  display: none;
}
#global_footer .copyright {
  display: block;
  padding-block: 1.2rem;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  color: var(--color-gray);
  border-top: 1px solid var(--color-main-border01);
}

@media screen and (min-width: 48em), print {
  #global_footer {
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.44;
  }
  #global_footer .footer_wrap {
    display: grid;
    grid-template-columns: 830px auto;
    width: 1200px;
    margin-inline: auto;
    padding: 88px var(--pc-pd-side) 72px;
  }
  #global_footer .footer_wrap li::before {
    display: inline-block;
    margin-right: 8px;
    font-family: none;
    font-weight: normal;
    color: var(--color-sub);
    content: "－";
  }
  #global_footer .footer_wrap li a:hover {
    color: var(--color-sub);
  }
  #global_footer .footer_wrap .gnav {
    grid-column: 2/3;
    grid-row: 1/2;
    font-weight: 500;
    font-size: 1.8rem;
  }
  #global_footer .footer_wrap .gnav li ~ li {
    margin-top: 22px;
  }
  #global_footer .footer_wrap .gnav .sub {
    display: none;
  }
  #global_footer .footer_wrap .subnav {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  #global_footer .footer_wrap .subnav dt {
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 1.8rem;
  }
  #global_footer .footer_wrap .subnav dd {
    width: 640px;
  }
  #global_footer .footer_wrap .subnav dd ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 32px;
  }
  #global_footer .footer_wrap .subnav dd ul li {
    min-width: 8em;
  }
  #global_footer .copyright {
    width: 1200px;
    margin-inline: auto;
    padding: 40px var(--pc-pd-side) 88px;
    text-align: left;
  }
}
@media screen and (max-width: 47.99em) {
  .js-footfit {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    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: 60px;
  right: 0;
  z-index: 2;
  -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: 85px;
    right: 20px;
  }
}

.fixed_btns {
  width: 100%;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.fixed_btns > div, .fixed_btns > button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}
.fixed_btns > div.ai, .fixed_btns > button.ai {
  background: transparent linear-gradient(96deg, var(--color-darkgold) 0%, var(--color-gold) 100%) 0% 0% no-repeat padding-box;
}
.fixed_btns > div.ai .small, .fixed_btns > button.ai .small {
  font-size: 70%;
  width: 100%;
  height: 1rem;
}
.fixed_btns > div.ai .talk::before, .fixed_btns > button.ai .talk::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e82d';
  margin-right: 0.5rem;
}
.fixed_btns > div.reserve, .fixed_btns > button.reserve {
  background: transparent linear-gradient(96deg, var(--color-grayblue) 0%, var(--color-lightblue) 100%) 0% 0% no-repeat padding-box;
}
@media screen and (min-width: 48em), print {
  .fixed_btns {
    position: fixed;
    right: 0;
    bottom: 0;
    height: 7.5rem;
    width: 36%;
    min-width: 450px;
  }
  .fixed_btns > div, .fixed_btns > button {
    font-size: 2rem;
  }
}

/*モーダル（求人）*/
#reserve_modal_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(infinity);
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: rgba(103, 103, 103, 0.6);
}

#reserve_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: calc(infinity);
  width: calc(100% - 6rem);
  height: auto;
  max-height: 70vh;
  background: #fff;
  padding: 2rem 1rem;
}
#reserve_modal .tit_04 {
  color: var(--color-grayblue);
  border-bottom: 1px solid var(--color-grayblue);
  text-align: center;
}
#reserve_modal p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
#reserve_modal ul li a {
  display: block;
  width: 100% !important;
  background: var(--color-grayblue);
  font-size: 1.8rem;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
}
#reserve_modal ul li a::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e82e';
  font-size: 120%;
  position: absolute;
  right: 1rem;
}
#reserve_modal ul li a::before {
  margin-right: 0.5rem;
  font-size: 120%;
}
#reserve_modal ul li a.acs::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e82f';
}
#reserve_modal ul li a.tel::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e830';
}
#reserve_modal ul li a.cal::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e831';
}
#reserve_modal > section + section {
  margin-top: 2.5rem;
}
#reserve_modal #reserve_modal_close {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
}
@media screen and (min-width: 48em), print {
  #reserve_modal {
    max-width: 100%;
    width: 400px;
  }
  #reserve_modal .tit_04 {
    font-size: 2.4rem;
  }
  #reserve_modal ul li a:hover {
    opacity: 0.8;
  }
  #reserve_modal #reserve_modal_close {
    position: absolute;
    top: -3rem;
    right: -3rem;
  }
  #reserve_modal #reserve_modal_close img {
    width: 6rem;
    height: 6rem;
  }
}

#sp_footer {
  width: calc(100% - 4rem);
  height: 4rem;
  color: var(--color-sub);
  background: var(--color-base-bg);
  -webkit-box-shadow: 0 -0.05rem 0 rgba(var(--color-black-rgb), 0.05);
          box-shadow: 0 -0.05rem 0 rgba(var(--color-black-rgb), 0.05);
}
#sp_footer .phone a {
  display: block;
  padding-block: 0.8rem;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 48em), print {
  #sp_footer {
    display: none;
  }
}

#pageup {
  display: block;
  width: 4rem;
  height: 4rem;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: var(--color-sub);
  background: var(--color-sub-lite);
  border: none;
}
#pageup::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e81b';
}
#pageup span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
    border-radius: 50%;
  }
  #pageup:hover {
    color: var(--color-white);
    background: var(--color-sub);
  }
}
@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;
}

@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;
}
.img_c.w100 {
  max-width: 100%;
}

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

@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;
  }
  .img_c.pc_w100 {
    max-width: 100%;
  }
  .img_l {
    float: left;
    max-width: 424px;
    margin: 0 30px 15px 0;
  }
  .img_l + * {
    margin-top: calc((var(--pc-l-height, 1.5) - 1) * -0.5em);
  }
  .img_r {
    float: right;
    max-width: 424px;
    margin: 0 0 15px 30px;
  }
  .img_r + * {
    margin-top: calc((var(--pc-l-height, 1.5) - 1) * -0.5em);
  }
}
.banner {
  text-align: center;
  margin-top: 2rem;
}
.banner a {
  display: inline-block;
}
@media screen and (min-width: 48em), print {
  .banner a:hover {
    opacity: 0.7;
  }
}

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

article:not(:last-of-type) {
  margin-bottom: 5rem;
}
article > .l-intro {
  margin-bottom: 3rem;
}
article > .l-intro ~ section {
  margin-top: 3rem;
}
article > .l-intro ~ section section {
  margin-top: 2rem;
}
article > section ~ section {
  margin-top: 4rem;
}
article > section section {
  margin-top: 3rem;
}
article > section section section {
  margin-top: 2rem;
}

section > :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  article:not(:last-of-type) {
    margin-bottom: 100px;
  }
  article > .l-intro {
    margin-bottom: 55px;
  }
  article > .l-intro ~ section {
    margin-top: 55px;
  }
  article > .l-intro ~ section section {
    margin-top: 40px;
  }
  article > section ~ section {
    margin-top: 90px;
  }
  article > section section {
    margin-top: 55px;
  }
  article > section section section {
    margin-top: 40px;
  }
}
.tit_01 {
  font-size: 2.2rem;
}

.tit_02 {
  margin-bottom: 2rem;
  font-weight: 500;
  font-size: 2.6rem;
  word-break: auto-phrase;
  line-height: 1.3;
  text-align: center;
  color: var(--color-sub);
}
.tit_02::after {
  display: block;
  width: 1.5rem;
  height: 1.2rem;
  margin-inline: auto;
  border-bottom: 1px solid var(--color-main-border02);
  content: "";
}

.tit_03 {
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  border-bottom: 0.25rem solid var(--color-sub);
}

.tit_04 {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  border-bottom: 1px solid var(--color-main-border02);
}

.tit_05 {
  margin-bottom: 1rem;
  padding-left: 0.7rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  border-left: 4px solid var(--color-main-border02);
}

.tit_06 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
}
.tit_06::before {
  display: inline-block;
  color: var(--color-sub);
  -webkit-transform: rotate(90deg) scale(0.6) translateY(0.2em);
          transform: rotate(90deg) scale(0.6) translateY(0.2em);
  content: "▲";
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 3.2rem;
  }
  .tit_02 {
    margin-bottom: 70px;
    font-size: 6.4rem;
    word-break: keep-all;
  }
  .tit_02::after {
    width: 30px;
    height: 20px;
  }
  .tit_03 {
    margin-bottom: 22px;
    padding-bottom: 16px;
    font-size: 2.8rem;
    border-bottom-width: 4px;
  }
  .tit_04 {
    margin-bottom: 20px;
    padding-bottom: 16px;
    font-size: 2.6rem;
  }
  .tit_05 {
    margin-bottom: 16px;
    padding-left: 10px;
    font-size: 2.4rem;
    border-left-width: 4px;
  }
  .tit_06 {
    margin-bottom: 12px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 48em), print {
  :where(.contents) :where(li) {
    line-height: 1.5;
  }
}

.lst_ul > li {
  padding-left: 1em;
}
.lst_ul > li::before {
  display: inline-block;
  margin-left: -1em;
  color: var(--color-sub);
  -webkit-transform: scale(0.25) translateX(-0.5em);
          transform: scale(0.25) translateX(-0.5em);
  content: "●";
}

.lst_ul {
  margin-bottom: 1em;
}
.lst_ul > li ~ li {
  margin-top: 0.5em;
}
.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.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: 48%;
  }
  .lst_ul.cols2 > 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_any > li {
  padding-left: 1em;
  text-indent: -1em;
}
.lst_any > li > * {
  text-indent: 0;
}
.lst_any > li ~ li {
  margin-top: 0.2em;
}

.dl_flow {
  counter-reset: flowNum 0;
}
.dl_flow dt {
  counter-increment: flowNum 1;
  padding: 1.3rem 1.7rem 0.1rem;
  font-weight: 500;
  font-size: 1.8rem;
  background: var(--color-main-bg);
}
.dl_flow dt::before {
  display: inline-block;
  margin-right: 0.25em;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--color-sub);
  content: counter(flowNum) ".";
}
.dl_flow dd {
  position: relative;
  padding: 0.2rem 1.7rem 1.7rem;
  background: var(--color-main-bg);
}
.dl_flow dd:not(:last-child) {
  margin-bottom: 3.5rem;
}
.dl_flow dd:not(:last-child)::after {
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
  display: block;
  width: 7rem;
  height: 1.5rem;
  background-color: var(--color-sub);
  content: "";
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          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: 35px 50px 10px;
    font-size: 3rem;
  }
  .dl_flow dt::before {
    font-size: 4.8rem;
  }
  .dl_flow dd {
    padding: 5px 50px 40px;
  }
  .dl_flow dd:not(:last-child) {
    margin-bottom: 80px;
  }
  .dl_flow dd:not(:last-child)::after {
    bottom: -65px;
    width: 234px;
    height: 40px;
  }
}

@media screen and (min-width: 48em), print {
  :where(.contents) :where(table) {
    line-height: 1.5;
  }
}

.tbl_simple, .tbl_data {
  width: 100%;
  border-collapse: collapse;
}
.tbl_simple th, .tbl_data th {
  padding: 0.8em 0.3em;
  font-weight: normal;
}
.tbl_simple td, .tbl_data td {
  padding: 0.8em;
}
@media screen and (max-width: 47.99em) {
  .tbl_simple, .tbl_data {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
@media screen and (min-width: 48em), print {
  .tbl_simple th, .tbl_data th {
    padding: 1.4em 0.5em;
  }
  .tbl_simple td, .tbl_data td {
    padding: 1.4em;
  }
}

.tbl_data th, .tbl_data td {
  border-bottom: 1px solid var(--color-main-border01);
}
.tbl_data thead th {
  background: var(--color-sub-pale);
  line-height: 1.3;
}

.tbl_simple {
  border-top: 1px solid var(--color-main-border01);
}
.tbl_simple th, .tbl_simple td {
  border-bottom: 1px solid var(--color-main-border01);
  text-align: left;
}

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

.box_notice, .box_symptoms {
  display: flow-root;
  padding: 1em;
}
.box_notice > :last-child, .box_symptoms > :last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 48em), print {
  .box_notice, .box_symptoms {
    padding: 28px 30px;
  }
}

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

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

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

.lnkp_ref a::before {
  display: inline-block;
  margin-left: 0.3em;
  font-family: "fontello";
  font-weight: normal;
  content: "\f006" "\f006";
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.lnkp_anchor {
  margin-bottom: 3rem;
  padding-inline: 1rem;
}
.lnkp_anchor li {
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  border-bottom: 1px solid var(--color-main-border02);
}
.lnkp_anchor li a {
  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;
  padding-block: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  color: var(--color-base-txt);
}
.lnkp_anchor li a::after {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 70%;
  line-height: 1;
  text-align: right;
  color: var(--color-sub);
  content: "▼";
}
@media screen and (min-width: 48em), print {
  .lnkp_anchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px 32px;
    margin-bottom: 60px;
    padding-inline: 0;
  }
  .lnkp_anchor li {
    width: 264px;
    margin-bottom: 0;
    padding-bottom: 0.5em;
  }
  .lnkp_anchor li a:hover {
    color: var(--color-sub);
  }
  .lnkp_anchor.-dise_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 24px;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .lnkp_anchor.-dise_list li {
    width: 320px;
  }
}

.btn_detail, .btn_back {
  padding: 0.85em 1.4em;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-sub);
  display: inline-block;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.btn_detail::after, .btn_back::after {
  display: inline-block;
  margin-left: 0.7em;
  letter-spacing: 0;
}
.btn_detail::after, .btn_back::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e81a';
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
@media screen and (min-width: 48em), print {
  .btn_detail:hover, .btn_back:hover {
    color: var(--color-white);
    background: var(--color-sub-bright);
  }
}

.btn_detail02 {
  display: block;
  background: var(--color-grayblue);
  font-size: 1.8rem;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  position: relative;
  text-decoration: none;
}
.btn_detail02::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e82e';
  font-size: 120%;
  position: absolute;
  right: 1rem;
}
.btn_detail02::before {
  margin-right: 0.5rem;
  font-size: 120%;
}
.btn_detail02.acs::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e82f';
}
.btn_detail02.tel::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e830';
}
.btn_detail02.cal::before {
  font-family: "fontello";
  font-weight: normal;
  content: '\e831';
}
@media screen and (min-width: 48em), print {
  .btn_detail02 {
    width: 30rem;
  }
  .btn_detail02:hover {
    opacity: 0.8;
  }
}

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

.marker, .notification {
  padding-left: 1em;
  text-indent: -1em;
}
.marker > *, .notification > * {
  text-indent: 0;
}
span.marker, 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;
  margin-right: 0.2em;
  font-family: "fontello";
  font-weight: normal;
  content: '\e801';
  line-height: 1;
}

.phone {
  font-family: "Jost", sans-serif;
}
.phone:has(> a)::before {
  display: none;
}
.phone:has(> a) a {
  display: inline-block;
}
.timetable_tbl {
  width: 100%;
  line-height: 1;
  border-collapse: collapse;
}
.timetable_tbl thead th {
  padding: 0.8em 0;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background: var(--color-sub-pale);
  border-bottom: 1px solid var(--color-main-border01);
}
.timetable_tbl thead th:first-child {
  width: 28%;
}
.timetable_tbl thead th:last-child {
  width: 15%;
}
.timetable_tbl tbody th {
  white-space: nowrap;
  font-weight: 500;
  font-size: 93%;
  border-bottom: 1px solid var(--color-main-border01);
}
.timetable_tbl tbody td {
  --color-gray: #707070;
  text-align: center;
  padding: 0.9em 0;
  color: var(--color-gray);
  border-bottom: 1px solid var(--color-main-border01);
}
.timetable_tbl tbody td i {
  display: inline-block;
  width: 1em;
  height: 1em;
  white-space: nowrap;
  overflow: hidden;
}
.timetable_tbl tbody td i::before {
  display: inline-block;
  margin-left: 0.05em;
  margin-right: 0.5em;
  font-family: "fontello";
  font-weight: normal;
  content: '\f008';
  color: var(--color-sub);
}
.timetable_note {
  margin-top: 0.3em;
}
.timetable_note span {
  display: inline-block;
  margin-top: 0.4em;
  font-size: 93%;
}

@media screen and (min-width: 48em), print {
  .timetable_tbl thead th {
    padding: 0.9em 0 0.85em;
  }
  .timetable_tbl thead th:last-child {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
  .timetable_tbl tbody th {
    padding: 0.5em 0;
  }
  .timetable_tbl tbody td {
    padding: 0.8em 0;
  }
  .timetable_tbl tbody td i {
    font-size: 106%;
  }
}
.splide__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  -webkit-animation: splide-loading 1s infinite linear;
          animation: splide-loading 1s infinite linear;
  border: 2px solid #333;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__play {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotateZ(0);
            transform: rotateZ(0);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  background: #fff;
  border: 0;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 2em;
  width: 2em;
}
.splide__arrow svg {
  fill: #000;
  height: 70%;
  width: 70%;
}
.splide__arrow:disabled {
  opacity: 0;
}
.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide__arrow--prev {
  left: 0.3em;
}
.splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.splide__arrow--next {
  right: 0.3em;
}
.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  padding: 0 1em;
}
.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  margin: 5px;
  padding: 0;
  position: relative;
  width: 10px;
}
.splide__pagination__page.is-active {
  background: #000;
  z-index: 1;
}
.splide__pagination__page:hover {
  cursor: pointer;
}
.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}
.splide__slide:focus {
  outline: 0;
}
@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}
.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}
.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  cursor: pointer;
  opacity: 0.6;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  opacity: 1;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}
.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}
.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}
.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
}
.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}
.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}
.splide__pagination--ttb {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero #keyvsl {
  opacity: 0;
}
.hero #keyvsl.is-initialized {
  -webkit-animation: fadeIn 3s forwards;
          animation: fadeIn 3s forwards;
}
.hero_inner .tagline {
  opacity: 0;
  -webkit-animation: fadeIn 1.8s ease-in-out 2s forwards;
          animation: fadeIn 1.8s ease-in-out 2s forwards;
  position: relative;
  z-index: 0;
  padding-block: 1.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  color: var(--color-main-dark);
}
.hero_inner .tagline::before {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: 0;
  display: block;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(var(--color-main-dull-rgb), 0.1);
  content: attr(data-eng);
}
.hero_inner .tagline em {
  display: block;
  font-size: 1.8rem;
}
.hero_inner .tagline em b {
  display: block;
  font-size: 2.5rem;
}
.hero_inner .tagline em i {
  font-size: 2rem;
}
.hero_inner .timetable {
  margin: 1rem 1.5rem 3rem;
  font-size: 1.4rem;
  background: rgba(var(--color-white-rgb), 0.95);
}
.hero_inner .timetable_note {
  font-weight: 500;
}

@media screen and (min-width: 48em), print {
  .hero {
    position: relative;
    width: clamp(1200px, 100%, 2000px);
    height: 628px;
    margin-inline: auto;
    overflow: clip;
  }
  .hero #keyvsl {
    position: absolute;
    top: 0;
    left: calc(50% - 1000px);
    z-index: -1;
    width: 2000px;
    height: 628px;
  }
  .hero_inner {
    position: relative;
    width: 1200px;
    height: 100%;
    margin-inline: auto;
  }
  .hero_inner .tagline {
    position: absolute;
    top: 160px;
    left: 0;
    width: 680px;
    padding: 52px var(--pc-pd-side) 0;
    font-size: 2.6rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-align: left;
    color: var(--color-white);
    text-shadow: 0 0 40px rgba(60, 27, 0, 0.3);
  }
  .hero_inner .tagline::before {
    top: -5px;
    font-weight: 500;
    font-size: 8.8rem;
    letter-spacing: 0.05em;
    color: rgba(var(--color-white-rgb), 0.24);
    text-shadow: none;
  }
  .hero_inner .tagline em {
    font-size: 4.4rem;
  }
  .hero_inner .tagline em b {
    font-size: 6rem;
  }
  .hero_inner .tagline em i {
    font-size: 5.2rem;
  }
  .hero_inner .timetable {
    position: absolute;
    right: 0;
    bottom: 24px;
    display: grid;
    grid-template-columns: 26px auto;
    gap: 0 20px;
    width: 510px;
    margin: 0;
    padding: 20px 24px;
    border-radius: 4px;
  }
  .hero_inner .timetable::before {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 26px;
    padding-top: 35px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.5em;
    line-height: 26px;
    content: "診療時間";
  }
  .hero_inner .timetable::after {
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 2.6rem;
    line-height: 1;
    font-family: "fontello";
    font-weight: normal;
    content: '\e80c';
    color: var(--color-sub);
  }
  .hero_inner .timetable_tbl {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .hero_inner .timetable_tbl thead th {
    background: transparent;
  }
  .hero_inner .timetable_note {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.feature_tit, .medical_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9rem 0;
  font-weight: 700;
  font-size: 1.7rem;
}
.feature_tit::before, .medical_tit::before {
  width: 1.5em;
  height: 1px;
  border-bottom: 1px solid var(--color-main-border02);
  content: "";
}
.feature_tit::after, .medical_tit::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--color-sub);
  content: attr(data-eng);
}
@media screen and (min-width: 48em), print {
  .feature_tit, .medical_tit {
    font-size: 2.4rem;
    gap: 16px 0;
  }
  .feature_tit::after, .medical_tit::after {
    font-size: 6.4rem;
  }
}

.worry {
  padding: 4rem var(--sp-pd-side) 5rem;
  background-image: url(../img/index/worry_bg.webp);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.worry_tit {
  position: relative;
  margin-bottom: 2rem;
  padding-top: 1em;
  color: var(--color-white);
  font-size: 1.9rem;
  text-align: center;
}
.worry_tit::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: rgba(var(--color-white-rgb), 0.1);
  content: attr(data-eng);
}
.worry_lst {
  padding-inline: 1rem;
}
.worry_lst li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6rem;
  margin-top: 0.5rem;
  padding: 1rem 1rem 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-base-txt);
  background: var(--color-base-bg);
}
.worry_lst li::before {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../img/ico_check.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  content: "";
}
.worry_lst.-pd li {
  padding: 1rem 0.5rem 1rem 0.8rem;
}
.worry .arrow::after {
  font-family: "fontello";
  font-weight: normal;
  content: '\e800';
  color: var(--color-sub);
  padding-left: 1rem;
}

@media screen and (min-width: 48em), print {
  .worry {
    height: 785px;
    padding: 88px 0 120px;
  }
  .worry .wrap {
    padding-inline: var(--pc-pd-side);
  }
  .worry_tit {
    margin-bottom: 70px;
    padding-top: 44px;
    font-size: 3.4rem;
  }
  .worry_tit::before {
    font-size: 8rem;
  }
  .worry_lst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px 9px;
    padding-inline: 0;
  }
  .worry_lst li {
    gap: 0 12px;
    width: 378px;
    height: 100px;
    margin-top: 0;
    padding: 20px 20px 20px 35px;
    font-size: 2rem;
  }
  .worry_lst.-pd li {
    padding: 20px 10px 20px 15px;
  }
  .worry .arrow::after {
    padding-left: 2rem;
  }
}
.medical {
  padding: 5rem var(--sp-pd-side);
}
.medical_tit {
  margin-bottom: 3rem;
}
.medical_lst > li {
  position: relative;
  background: var(--color-main-bg);
}
.medical_lst > li > a {
  display: grid;
  width: 100%;
  padding: 1.5rem 2rem;
  font-size: 1.8rem;
}
.medical_lst > li > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 2.8rem;
  padding-left: 1rem;
  font-family: "fontello";
  font-weight: normal;
  content: '\e81a';
  font-size: 1.3rem;
  line-height: 2.8rem;
  text-align: center;
  color: var(--color-white);
  background: var(--color-sub);
  -webkit-clip-path: polygon(28.5% 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(28.5% 0, 100% 0, 100% 100%, 0% 100%);
}
.medical_lst > li .dizs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
  padding: 1.4rem 2rem 3.6rem;
  font-weight: 500;
}
.medical_lst > li .dizs li {
  width: 50%;
}
.medical_lst > li .dizs li::before {
  display: inline-block;
  margin-right: 0.8rem;
  font-family: none;
  font-weight: normal;
  color: var(--color-sub);
  content: "－";
}
.medical_lst > li.box {
  margin-bottom: 1.5rem;
}
.medical_lst > li.box > a {
  place-content: center;
  height: 12rem;
  font-weight: 700;
  color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.medical_lst > li.box .a_male {
  background-image: url(../img/index/medical_male.webp);
}
.medical_lst > li.box .a_female {
  background-image: url(../img/index/medical_female.webp);
}
.medical_lst > li.box .a_child {
  background-image: url(../img/index/medical_child.webp);
}
.medical_lst > li.box .a_cancer {
  background-image: url(../img/index/medical_cancer.webp);
}
.medical_lst > li:not(.box) {
  margin-top: 1rem;
}
.medical_lst > li:not(.box) > a {
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.medical_lst > li:not(.box) > a::before {
  width: 6.6rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  border-right: 1px solid;
  -o-border-image: linear-gradient(transparent 5%, var(--color-main-border01) 5%, var(--color-main-border01) 95%, transparent 95%) 1;
     border-image: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(5%, var(--color-main-border01)), color-stop(95%, var(--color-main-border01)), color-stop(95%, transparent)) 1;
     border-image: linear-gradient(transparent 5%, var(--color-main-border01) 5%, var(--color-main-border01) 95%, transparent 95%) 1;
  content: "";
}
.medical_lst > li:not(.box) .a_kidney::before {
  background-image: url(../img/index/medical_kidney.svg);
}
.medical_lst > li:not(.box) .a_std::before {
  background-image: url(../img/index/medical_std.svg);
}
.medical_lst > li:not(.box) .a_ed::before {
  background-image: url(../img/index/medical_ed.svg);
}

@media screen and (min-width: 48em), print {
  .medical {
    padding: 130px 0 120px;
  }
  .medical .wrap {
    padding-inline: var(--pc-pd-side);
  }
  .medical_tit {
    margin-bottom: 96px;
  }
  .medical_lst {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
  .medical_lst > li > a {
    padding: 28px 34px;
    font-size: 2.4rem;
  }
  .medical_lst > li > a::after {
    width: 70px;
    height: 30px;
    line-height: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .medical_lst > li > a:hover::after {
    background: var(--color-sub-bright);
  }
  .medical_lst > li .dizs {
    gap: 16px 0;
    padding: 40px 50px;
  }
  .medical_lst > li .dizs li {
    width: 33.3%;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .medical_lst > li .dizs li a:hover {
    color: var(--color-sub);
  }
  .medical_lst > li.box {
    width: 564px;
    margin-bottom: 0;
  }
  .medical_lst > li.box > a {
    height: 190px;
  }
  .medical_lst > li.box > a:hover {
    text-decoration-thickness: 1px;
    text-decoration: underline;
  }
  .medical_lst > li:not(.box) {
    width: 368px;
    margin-top: 0;
  }
  .medical_lst > li:not(.box) > a {
    gap: 0 24px;
  }
  .medical_lst > li:not(.box) > a::before {
    width: 78px;
    height: 46px;
  }
  .medical_lst > li:not(.box) > a:hover {
    color: var(--color-sub);
  }
}
.feature {
  padding: 4rem var(--sp-pd-side);
  background: var(--color-main-bg);
  counter-reset: fNum 0;
}
.feature_tit {
  margin-bottom: 3rem;
}
.feature_lst {
  counter-increment: fNum 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
}
.feature_lst .box {
  padding: 1.6rem 1.6rem 2rem;
  color: var(--color-base-txt);
  background-color: var(--color-base-bg);
}
.feature_lst .box .tit {
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 2.8rem;
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.feature_lst .box .tit::before {
  position: absolute;
  top: -1.45em;
  left: 3.5rem;
  display: block;
  width: 1px;
  height: 2.25em;
  border-left: 1px solid var(--color-main-border01);
  -webkit-transform: skew(-45deg);
          transform: skew(-45deg);
  content: "";
}
.feature_lst .box .tit::after {
  position: absolute;
  top: -4rem;
  left: -0.5rem;
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 4rem;
  line-height: 1;
  color: var(--color-sub);
  content: counter(fNum, decimal-leading-zero);
}
.feature_lst .box .txt {
  margin-bottom: 0;
}
.feature_lst .box .more {
  margin-top: 1.5rem;
  text-align: center;
}
.feature_lst .img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (min-width: 48em), print {
  .feature {
    padding: 100px 0;
  }
  .feature_tit {
    margin-bottom: 96px;
  }
  .feature_lst {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 56px;
  }
  .feature_lst .box {
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    width: 600px;
    min-height: 340px;
    margin-top: 24px;
    padding: 0 104px;
  }
  .feature_lst .box .tit {
    margin-bottom: 16px;
    padding-left: 0;
    font-size: 2.8rem;
    word-break: normal;
  }
  .feature_lst .box .tit::before {
    left: 16px;
  }
  .feature_lst .box .tit::after {
    top: -65px;
    left: -47px;
    font-size: 6.4rem;
  }
  .feature_lst .box .txt {
    word-break: auto-phrase;
  }
  .feature_lst .box .more {
    margin-top: 32px;
    text-align: left;
  }
  .feature_lst .img {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 600px;
  }
  .feature_lst:nth-of-type(even) .img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.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: 3rem var(--sp-pd-side) 5rem;
  background: var(--color-main-bg);
}
.news_tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.6em 0;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-size: 1.7rem;
}
.news_tit::before {
  display: block;
  width: 1.2em;
  height: 1.4em;
  border-left: 1px solid var(--color-main-border02);
  -webkit-transform: skew(-30deg) translateX(0.5em);
          transform: skew(-30deg) translateX(0.5em);
  content: "";
}
.news_tit::after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: 0.05em;
  line-height: 0.8;
  color: var(--color-sub);
  content: attr(data-eng);
}
.news_box {
  padding-block: 1.5rem;
  padding-inline: 1rem;
  border-top: 1px solid var(--color-main-border01);
  border-bottom: 1px solid var(--color-main-border01);
}
.news_box dl dt {
  font-weight: 500;
}
.news_box dl dt::before {
  display: inline-block;
  color: var(--color-sub);
  -webkit-transform: scale(0.7) translateX(-0.1em);
          transform: scale(0.7) translateX(-0.1em);
  content: "▼";
}
.news_box dl dt.is_open::before {
  -webkit-transform: scale(0.7) translateX(-0.1em) rotate(180deg);
          transform: scale(0.7) translateX(-0.1em) rotate(180deg);
}
.news_box dl dt ~ dt {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-main-border01);
}
.news_box dl dt time {
  display: inline-block;
  width: calc(100% - 2em);
  padding-left: 0.3em;
}
.news_box dl dd {
  padding-top: 0.8rem;
}

@media screen and (min-width: 48em), print {
  .news {
    padding: 80px 0 120px;
  }
  .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;
    padding-inline: var(--pc-pd-side);
  }
  .news_tit {
    width: 180px;
    gap: 14px 0;
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .news_tit::after {
    margin-right: 0;
    font-size: 5.6rem;
  }
  .news_box {
    width: 874px;
    padding-block: 30px;
  }
  .news_box dl dt {
    font-weight: 400;
  }
  .news_box dl dt ~ dt {
    margin-top: 30px;
    padding-top: 28px;
  }
  .news_box dl dt time {
    width: 130px;
  }
  .news_box dl dd {
    padding-left: 146px;
  }
}
.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;
  min-height: 10rem;
  padding: 1rem;
  color: var(--color-white);
  background: var(--color-heading);
}
.heading h1 {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media screen and (min-width: 48em), print {
  .heading {
    min-height: 320px;
    padding: 0 calc(50% - 600px);
  }
  .heading h1 {
    font-size: 4.8rem;
  }
}

.breadcrumbs {
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.3;
  color: var(--color-base-txt);
  background: var(--color-main-bg);
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:not(:first-child)::before {
  display: inline-block;
  margin: 0 0.2em;
  content: "＞";
}
.breadcrumbs li a {
  text-decoration: underline;
}
@media screen and (min-width: 48em), print {
  .breadcrumbs {
    padding: 16px 0;
    font-size: 1.2rem;
  }
  .breadcrumbs ol {
    width: 1200px;
    margin-inline: auto;
    padding-inline: var(--pc-pd-side);
  }
  .breadcrumbs ol a:hover {
    text-decoration: none;
  }
}

.contents {
  padding: 3.5rem var(--sp-pd-side) 5rem;
}
@media screen and (min-width: 48em), print {
  .contents {
    width: 1200px;
    margin-inline: auto;
    padding: 110px var(--pc-pd-side) 130px;
  }
  .contents section:has(> .img_r, > .img_l) {
    display: flow-root;
  }
  .contents section:has(> .img_r, > .img_l) > section:first-of-type {
    clear: both;
  }
}

body#page_doctor .doctor_greeting {
  padding-inline: 1rem;
  line-height: 1.6;
}
body#page_doctor .doctor_greeting .signature {
  text-align: right;
  line-height: 1.4;
}
body#page_doctor .doctor_greeting .signature span {
  margin-left: 0.5em;
  font-size: 120%;
}
body#page_doctor .doctor_profile .bio dl {
  display: grid;
  grid-template-columns: 5em auto;
  gap: 0.5em 0;
}
body#page_doctor .doctor_profile .bio dl dt {
  width: 4.5em;
  white-space: nowrap;
}
body#page_doctor .doctor_profile .bio dl dt i {
  display: none;
}
@media screen and (min-width: 48em), print {
  body#page_doctor .doctor_greeting {
    display: flow-root;
    padding-inline: 0;
    line-height: 1.8;
  }
  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;
  }
  body#page_doctor .doctor_profile .bio {
    width: 640px;
  }
  body#page_doctor .doctor_profile .licsoc {
    width: 450px;
  }
}

body#page_facilities .splide__arrow {
  background: var(--color-white);
}
body#page_facilities .splide__arrow svg {
  fill: var(--color-sub);
}
body#page_facilities .splide.panels figcaption {
  padding: 0.6em 0.3em;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
  text-align: center;
  color: var(--color-white);
  background: var(--color-sub);
}
body#page_facilities .splide.navs {
  margin-top: 0.6rem;
}
body#page_facilities .splide.navs .splide__track--nav > .splide__list > .splide__slide {
  opacity: 0.6;
  outline: 3px solid transparent;
  outline-offset: -3px;
}
body#page_facilities .splide.navs .splide__track--nav > .splide__list > .splide__slide.is-active {
  opacity: 1;
  outline-color: var(--color-sub);
}
body#page_facilities .splide.navs#equipmentSlide-nav .splide__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 48em), print {
  body#page_facilities .tit_02 {
    margin-bottom: 50px;
  }
  body#page_facilities .splide {
    width: 750px;
    margin-inline: auto;
  }
  body#page_facilities .splide.panels .splide__arrow {
    background: transparent;
    width: 50px;
    height: 50px;
  }
  body#page_facilities .splide.panels .splide__arrow:hover {
    background-color: var(--color-sub-lite);
  }
  body#page_facilities .splide.panels .splide__arrow--prev {
    left: -60px;
  }
  body#page_facilities .splide.panels .splide__arrow--next {
    right: -60px;
  }
  body#page_facilities .splide.panels figcaption {
    font-size: 2.4rem;
  }
  body#page_facilities .splide.navs {
    margin-top: 10px;
  }
  body#page_facilities .splide.navs .splide__track--nav > .splide__list > .splide__slide {
    outline-width: 4px;
    outline-offset: -4px;
  }
}

body#page_visitor {
  /*クレジットカード*/
}
body#page_visitor .frame_o {
  margin: 0 auto 1rem;
  padding: 1rem;
  border: 3px solid var(--color-sub);
  border-radius: 0.8rem;
}
body#page_visitor ul.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left; /* 子要素をflexboxにより中央に配置する */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 子要素をflexboxにより中央に配置する */
}
body#page_visitor ul.card li {
  margin-right: 5%;
  margin-bottom: 5%;
  width: 28%;
  vertical-align: baseline;
}
body#page_visitor ul.card li.paypay {
  width: 40%;
}
body#page_visitor ul.card li.text {
  width: 100%;
}
body#page_visitor ul.card li img {
  max-width: 100%;
}
@media screen and (min-width: 48em), print {
  body#page_visitor ul.card li {
    margin-right: 5%;
    margin-bottom: 1%;
    width: 15%;
    vertical-align: baseline;
  }
  body#page_visitor ul.card li.paypay {
    width: 20%;
  }
  body#page_visitor ul.card li.text {
    width: 30%;
  }
  body#page_visitor ul.card li img {
    max-width: 100%;
  }
  body#page_visitor .first_guide {
    display: flow-root;
  }
}

body#page_access .adr {
  font-size: 1.5rem;
}
body#page_access .acs li ~ li {
  margin-top: 0.5em;
}
body#page_access .parking img {
  max-width: 90%;
  margin: 0 auto 0.5rem;
}
body#page_access .parking figcaption {
  text-align: center;
}
body#page_access .tel {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: center;
}
body#page_access .gmap {
  margin-top: 4rem;
  border-top: 5px solid var(--color-sub);
  border-bottom: 5px solid var(--color-sub);
  width: 100%;
  height: 40rem;
}
body#page_access .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media screen and (min-width: 48em), print {
  body#page_access .tit_02 {
    margin-bottom: 50px;
  }
  body#page_access .adr,
  body#page_access .acs,
  body#page_access .parking {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 800px;
    margin-inline: auto;
    font-size: 2rem;
  }
  body#page_access .adr img,
  body#page_access .acs img,
  body#page_access .parking img {
    max-width: 100%;
  }
  body#page_access .tel {
    font-size: 4rem;
    line-height: 1;
  }
  body#page_access .gmap {
    height: 550px;
    margin-top: 100px;
    border: 5px solid var(--color-main-border01);
  }
}
@media print {
  body#page_access .contents {
    padding-top: 50px;
  }
  body#page_access .tit_02 {
    margin-bottom: 30px;
    font-size: 3rem;
  }
}

.dis_stage li ~ li {
  margin-top: 0.5em;
}
.dis_stage li span {
  display: block;
}
@media screen and (min-width: 48em), print {
  .dis_stage li span {
    display: inline-block;
    margin-right: 0.5em;
  }
}

.tbl_data[data-name=edmedicine] {
  table-layout: fixed;
}
.tbl_data[data-name=edmedicine] th {
  white-space: nowrap;
}
.tbl_data[data-name=edmedicine] thead th:first-child {
  width: 16%;
}
.tbl_data[data-name=edmedicine] tbody tr:not(.feat) td {
  text-align: center;
}

@counter-style p-decimal {
  system: extends decimal;
  prefix: "";
  suffix: " ) ";
  speak-as: number;
}
body#page_privacy article .lead {
  margin-bottom: 4.5rem;
}
body#page_privacy article ul ul, body#page_privacy article ul ol, body#page_privacy article ol ul, body#page_privacy article ol ol {
  margin-block: 0.5em;
}
body#page_privacy article .lst_ul > li::before {
  color: inherit;
}
body#page_privacy article .lst_ol > li {
  list-style-type: p-decimal;
}
body#page_privacy article .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
body#page_privacy article .dl_num dt ~ dt {
  margin-top: 0.8em;
}
body#page_privacy article .dl_num > dd {
  padding-left: 1.5em;
}
body#page_privacy article .pp_sign {
  margin-top: 5rem;
  text-align: right;
}
body#page_privacy article .pp_contactus {
  margin-top: 3rem;
  padding: 0.8rem 1rem;
  font-size: 90%;
  border: 1px solid rgba(var(--color-black-rgb), 0.1);
}
body#page_privacy article .pp_contactus div {
  padding-left: 3em;
  text-indent: -3em;
  word-spacing: 0.5em;
  word-break: auto-phrase;
}
@media screen and (min-width: 48em), print {
  body#page_privacy article .lead {
    margin-bottom: 90px;
  }
  body#page_privacy article .pp_sign {
    margin-top: 100px;
  }
  body#page_privacy article .pp_contactus {
    margin-top: 25px;
    padding: 0;
    font-size: 100%;
    border: none;
  }
  body#page_privacy article .pp_contactus div {
    text-align: right;
    padding-left: 0;
    text-indent: 0;
  }
}

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