@charset "UTF-8";
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-wrap: break-word;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  margin: 0;
  padding: 0;
}

h5, h6 {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 1em 0;
}

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

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

:root {
  --clr_txt: #444;
  --rgb_txt: 68, 68, 68;
  --clr_red: #f00;
  --rgb_red: 255, 0, 0;
  --clr_red_light: #f33;
  --rgb_red_light: 255, 51, 51;
  --clr_red_dark: #c00;
  --rgb_red_dark: 204, 0, 0;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.img_c {
  margin: 1rem auto;
}

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

img.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt00 {
  margin-top: 0rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.main > section ~ section, .flex2 > section ~ section {
  margin-top: 4rem;
}

.main > section section ~ section, .flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > section > section section ~ section, .flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt40 {
    margin-top: 8rem;
  }
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.gmap {
  width: 100%;
  height: 28rem;
}

.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: var(--clr_txt);
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: var(--clr_txt);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: var(--clr_txt);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 4rem;
}
.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
    margin-top: 0 !important;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 2rem;
  }
  .flex3 li {
    width: 31%;
  }
}
.box_ {
  padding: 1.6rem;
}
@media screen and (min-width: 48em), print {
  .box_ {
    padding: 3rem;
  }
}

.btn_rsv {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.4rem;
}
.btn_detail {
  display: inline-block;
  padding: 0.4rem 2rem;
  background: #fff;
  color: var(--clr_txt);
  text-decoration: none !important;
}
@media screen and (min-width: 48em), print {
  .btn_detail:is(:hover, :focus-visible) {
    background: var(--clr_txt);
    color: #fff;
    opacity: 1;
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\f08e";
  font-size: 0.8em;
  margin-left: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .linkout::after {
    margin-left: 1rem;
  }
}

html {
  font-size: 2.7777777778vw;
}

body {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  font-size: 90%;
  line-height: 1.7em;
  background: #fff;
  text-align: center;
  color: var(--clr_txt);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Kaku Gothic", "ヒラギノ角ゴ W3", "ＭＳ Ｐゴシック", sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100%;
  content: "";
  background: rgba(var(--rgb_txt), 0.6);
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    margin: 0 auto;
    line-height: 1.7em;
    font-size: 1rem;
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
}
header {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 99;
  background: #fff;
}

h1 {
  width: 100%;
  padding: 0.5em 0.5rem 1rem;
  font-size: 30%;
  line-height: 1em;
  text-align: left;
  position: relative;
  z-index: 99;
  background: #fff;
}

.head-main {
  z-index: 99;
  float: none;
  display: block;
  margin: 0 auto;
}
.head-main .head-logo {
  float: none;
  display: block;
  padding: 0.5em 0 0.5em 2%;
  margin: 0;
  width: 80%;
}
.head-main .head-logo a {
  display: block;
}
.head-main .head-tel {
  text-align: center;
  margin: 0 auto 0.5em auto;
  width: 60%;
  padding-top: 0em;
}

.spnav_modal header {
  position: relative;
  z-index: 99;
  background: #fff;
}
.head-info {
  width: 60%;
  margin: 0 auto 0.5em auto;
  text-align: center;
  position: inherit;
  top: inherit;
  right: inherit;
  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;
}
.head-info li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40%;
}
.head-info img {
  margin: 0 auto;
  text-align: center;
}
.head-info a {
  pointer-events: auto;
  cursor: pointer;
}

@media screen and (min-width: 48em), print {
  h1 {
    margin: 0.3em auto 0 auto;
    color: #888;
    font-size: 80%;
    font-weight: normal;
    display: block;
    text-align: left;
    width: 80%;
  }
  header {
    margin: 0 auto 0 auto;
    display: block;
    margin: 0 auto;
  }
  header .head-main {
    margin: 0 auto;
  }
  header .head-main .head-logo {
    float: none;
    display: block;
    padding: 0;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .head-main .head-logo a {
    display: block;
  }
  header .head-main .head-tel {
    text-align: center;
    margin: 0.5em auto;
  }
  header .head-main .head-tel a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  /* 予約・問診票リンク */
  .head-link {
    margin: 0 auto 0 auto;
    padding: 0;
    width: 50%;
    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;
    list-style: none;
  }
  .head-link li {
    width: 30%;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 3.4rem;
  height: 3.4rem;
  background: #8dc33e;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 0.8rem;
  padding: 0;
  position: absolute;
  inset: 1rem 0.5rem auto auto;
  border-radius: 0.4rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(100dvh - 8rem);
  overflow-y: auto;
  background: #fff;
  -webkit-box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
          box-shadow: 0 0.4rem 0.6rem 0.2rem rgba(var(--rgb_txt), 0.2);
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  inset: 5.8rem 0 auto;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid var(--clr_txt);
  border-bottom: 1px solid var(--clr_txt);
}
#nav .gnav_subnav .gnav > li {
  list-style: none;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted var(--clr_txt);
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.8rem;
  font-size: 1.2rem;
  color: var(--clr_txt);
  background: #fff;
  border: 0;
  border-bottom: 0;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\34";
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\33";
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  list-style: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: var(--clr_txt);
  background: #cfebb6;
  border-bottom: 1px solid #fff;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: #8dc33e;
  text-align: center;
  padding: 0.6rem 0;
  margin: 2rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: relative;
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    max-height: inherit;
    -webkit-box-shadow: none;
            box-shadow: none;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: 0 auto 0.5em auto !important;
    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;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    width: 100%;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 160px;
    height: 100%;
    text-indent: -9999px;
    overflow: hidden;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 1.1rem;
    margin: 0;
    padding: 12% 0 10% 0;
    border-radius: 4px;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible) {
    background-color: #f9d1b7;
    opacity: 0.4;
  }
  #nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li a.home {
    background-image: url("../images/common/gnav_home.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }
  #nav .gnav_subnav .gnav > li a.doctor {
    background-image: url("../images/common/gnav_greeting.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }
  #nav .gnav_subnav .gnav > li a.first {
    background-image: url("../images/common/gnav_first2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }
  #nav .gnav_subnav .gnav > li a.clinic {
    background-image: url("../images/common/gnav_clinic.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }
  #nav .gnav_subnav .gnav > li a.access {
    background-image: url("../images/common/gnav_access.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 120%;
    position: absolute;
    left: -10%;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 0.5rem 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible) {
    color: #cfebb6;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
    -webkit-transition: 0s;
    transition: 0s;
  }
  #nav .gnav_subnav .gnav > li:has(.sub),
  #nav .gnav_subnav .gnav > li:has(a.features),
  #nav .gnav_subnav .gnav > li:has(a.faq),
  #nav .gnav_subnav .gnav > li:has(a.yoyaku),
  #nav .gnav_subnav .gnav > li:has(a.event),
  #nav .gnav_subnav .gnav > li:has(a.staff) {
    display: none;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
footer {
  overflow: hidden;
  padding: 1em 0 0.5em 0;
}
footer .foot-wrap {
  width: 100%;
  margin: 2em auto 0;
}
footer .foot-wrap p a {
  pointer-events: auto;
  cursor: pointer;
  text-decoration: none;
}
footer .f-sitemap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0.2rem 0.4rem;
  gap: 0.4rem 0;
}
footer .f-sitemap li {
  display: inline-block;
  text-align: center;
  padding: 0 0.3em 0 0.3em;
  font-size: 70%;
  line-height: 1.8em;
  border-left: 1px solid #ccc;
}
footer .f-sitemap li:first-of-type {
  border-left: 0px solid #ccc;
}
footer .f-sitemap li.treatment {
  display: none;
}
footer .f-sitemap li a {
  white-space: nowrap;
  color: #f5b387;
}
footer .f-sitemap li a:hover {
  color: #f5b387;
}

#copyright {
  background: #8ec33f;
  color: #fff;
  line-height: 1.5em;
  font-size: 0.8em;
  /* padding: 0 1em 0 1em; */
  padding: 0.5em 0 6.5em 0;
  margin: 0;
}
#copyright p {
  margin-bottom: 0;
  text-align: center;
}
#copyright p a {
  color: #fff;
  display: inline-block;
}

@media screen and (min-width: 48em), print {
  footer {
    clear: both;
    margin: 0 auto;
    padding: 2em 0 2em 0;
    overflow: hidden;
  }
  footer .f-sitemap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer .f-sitemap li {
    font-size: 1rem;
    padding: 0 1em 0 1em;
  }
  footer .f-sitemap li a {
    color: #5A5A5A;
  }
  #copyright {
    margin-bottom: 0;
    padding: 0.5em 0 0.5em 0;
    line-height: 1.5em;
    font-size: 0.9em;
  }
  #copyright p {
    margin-bottom: 0;
    font-size: 80%;
  }
}/*# sourceMappingURL=style.css.map */