@charset "utf-8";
/*----------------------------------------------------------------------------------------------------

  global navigation
  
----------------------------------------------------------------------------------------------------*/
html.is-gNav-open {
  overflow: hidden;
}
html.is-gNav-open,
html.is-gNav-open body {
  height: 100%;
}
.l-gNav-wrap {
  width: 100%;
  min-width: 320px;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  pointer-events: none;
  background-color: transparent;
  transition: background 0.6s var(--cubic-bezier);
}
html.is-gNav-open .l-gNav-wrap {
  background-color: #FFF;
}
html.is-gNav-open .l-gNav-wrap {
  pointer-events :auto;
}
.l-gNav {
  opacity: 0;
  transition: opacity 1s var(--cubic-bezier);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
html.is-gNav-open .l-gNav {
  opacity: 1;
}
html.is-gNav-close .l-gNav {
  transition: opacity 0.15s var(--cubic-bezier);
}
.l-gNav a,
.l-gNav a:visited,
.l-gNav a:hover {
  color: inherit;
  text-decoration: none;
}
.l-gNav-scr {
  overflow-y: auto;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.l-gNav-body {
  width: 100%;
  height: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: var(--block-space-s) var(--side-space) var(--block-space-l) var(--side-space);
}
.l-gNav-body .inner {
  width: 100%;
  display: flex;
}
@media print, screen and (min-width:1001px) {
  .l-gNav-body .inner {
    display: flex;
    justify-content: space-between;
    align-self: center;
  }
}
@media print, screen and (max-width:1000px) {
  .l-gNav-body .inner {
    height: 100%;
    display: grid;
    grid-template-rows: 1fr auto;
  }
}

/*--------------------------------------------------------------------------------
  logo
--------------------------------------------------------------------------------*/
.l-gNav-logo {
  padding: var(--box-space-s);
  text-align: left;
}
@media print, screen and (min-width:1201px) {
  .l-gNav-logo img {
    width: 260px;
  }
}
@media print, screen and (max-width:1200px) {
  .l-gNav-logo img {
    width: 240px;
  }
}
@media screen and (max-width:640px) {
  .l-gNav-logo img {
    width: clamp(180px, calc(230 / 540 * 100vw), 230px);
  }
}

/*--------------------------------------------------------------------------------
  menu
--------------------------------------------------------------------------------*/
.l-gNav-menu {
  list-style: none;
  line-height: var(--line-height-s);
}
.l-gNav-menu li:not(:first-child) {
  padding-top: 1.5em;
}
.l-gNav-menu .en {
  font-family: var(--ff-en);
  font-size: var(--fs-3l);
  font-weight: 300;
  margin-right: 1.5rem;
  display: inline-block;
}
.l-gNav-menu .jp {
  font-size: var(--fs-2s);
  font-weight: 300;
  display: inline-block;
  color: #828DA0;
}
@media print, screen and (min-width:1001px) {
  .l-gNav-menu {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
  }
}
@media print, screen and (max-width:1000px) {
  .l-gNav-menu {
    align-self: center;
  }
}
@media screen and (min-width:640px) {
  .l-gNav-menu {
    font-size: var(--fs-m);
  }
}

/*--------------------------------------------------------------------------------
  address
--------------------------------------------------------------------------------*/
.l-gNav-info {
  line-height: var(--line-height-m);
}
.l-gNav-info_ad {
  padding-bottom: 1em;
  padding-top: var(--block-space-l);
}
.l-gNav-info_sns {
  list-style: none;
  display: inline-flex;
  align-items: center;
  padding-top: var(--block-space-2s);
}
.l-gNav-info_sns li:first-child {
  padding-right: 0.5em;
  font-size: var(--fs-s);
}
.l-gNav-info_sns li:not(:first-child) {
  padding-left: 1em;
}
.l-gNav-info_sns li img {
  width: 1.4em;
  vertical-align: middle;
}
@media print, screen and (min-width:1001px) {
  .l-gNav-info {
    padding-left: var(--side-space);
    padding-right: var(--side-space);
    padding-bottom: 0.75em;
    align-self: flex-end;
  }
}

/*--------------------------------------------------------------------------------
  button
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:1001px) {
  :root {
    --gNavBtn-width: 5.5em;
    --gNavBtn-height: 6em;
    --gNavBtn-icon-width: 30px;
    --gNavBtn-icon-height: 16px;
  }
}
@media print, screen and (max-width:1000px) {
  :root {
    --gNavBtn-width: 5.5em;
    --gNavBtn-height: 6em;
    --gNavBtn-icon-width: 30px;
    --gNavBtn-icon-height: 16px;
  }
}
@media screen and (max-width:640px) {
  :root {
    --gNavBtn-width: 4.5em;
    --gNavBtn-height: 5em;
    --gNavBtn-icon-width: 24px;
    --gNavBtn-icon-height: 14px;
  }
}
.l-gNavBtn-wrap {
  width: 100%;
  min-width: 320px;
  position: fixed;
  top: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 3000;
}
html:not(.is-gNav-open):not(.is-gNav-colse) .l-gNavBtn-wrap.is-blend-mode {
  mix-blend-mode: difference;
}
.l-gNavBtn {
  width: var(--gNavBtn-width);
  height: var(--gNavBtn-height);
  margin-left: auto;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.l-gNavBtn_icon,
.l-gNavBtn_icon span,
.l-gNavBtn_icon span:before,
.l-gNavBtn_icon span:after {
  display: inline-block;
}
.l-gNavBtn_icon {
  position: relative;
  width: var(--gNavBtn-icon-width);
  height: var(--gNavBtn-icon-height);
  transition: all 0.3s ease-out;
}
.l-gNavBtn_icon span {
  position: absolute;
  right: 0;
  height: 1px;
  transition: all 0.3s ease-out;
  background-color: #FFF;
}
.l-gNavBtn.is-close .l-gNavBtn_icon span,
html.is-gNav-open .l-gNavBtn_icon span,
html.is-gNav-close .l-gNavBtn_icon span {
  background-color: #2A3042;
}
.l-gNavBtn_icon span:nth-of-type(1) {
  width: 100%;
  top: 0;
}
.l-gNavBtn_icon span:nth-of-type(2) {
  width: 80%;
  top: 50%;
}
.l-gNavBtn_icon span:nth-of-type(3) {
  width: 60%;
  bottom: 0;
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(1) {
  width: 100%;
  transform: translateY(calc((var(--gNavBtn-icon-height) / 2) - 0.5px)) rotate(-45deg);
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(2) {
  right: 50%;
  opacity: 0;
  animation: navBtn02 .8s forwards;
}
.l-gNavBtn.is-close .l-gNavBtn_icon span:nth-of-type(3) {
  width: 100%;
  transform: translateY(calc(-1 * (var(--gNavBtn-icon-height) / 2) + 0.5px)) rotate(45deg);
}
@keyframes navBtn02 {
  100% { height: 0; }
}
@media (hover: hover) {
  .l-gNavBtn:hover .l-gNavBtn_icon span:nth-of-type(2),
  .l-gNavBtn:hover .l-gNavBtn_icon span:nth-of-type(3) {
    width: 100%;
  }
}

/*----------------------------------------------------------------------------------------------------

  header
  
----------------------------------------------------------------------------------------------------*/
header {
  position: absolute;
  z-index: 100;
  width: 100%;
  min-width: 320px;
  color: #FFF;
  display: flex;
  justify-content: flex-end;
  padding-right: var(--gNavBtn-width);
}
header a,
header a:visited,
header a:hover {
  color: #FFF;
  text-decoration: none;
}

/*--------------------------------------------------------------------------------
  nav
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:1001px) {
  .l-hd-nav {
    list-style: none;
    display: flex;
    gap: 2em;
    padding-top: 3.5rem;
    padding-left: var(--box-space-s);
    padding-right: var(--box-space-s);
    font-size: var(--fs-s);
  }
}
@media print, screen and (max-width:1000px) {
  .l-hd-nav {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
  TEL
--------------------------------------------------------------------------------*/
@media print, screen and (min-width:1001px) {
  .l-hd-tel {
    padding-top: 2.5rem;
    padding-left: 0.5em;
    padding-right: 0.5em;
    font-family: var(--ff-en);
    font-size: var(--fs-s);
  }
  .l-hd-tel a {
    font-size: var(--fs-3l);
  }
}
@media print, screen and (max-width:1000px) {
  .l-hd-tel {
    display: none;
  }
}

/*----------------------------------------------------------------------------------------------------

  Contents
  
----------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  ページタイトル
--------------------------------------------------------------------------------*/
.l-pgTtl {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.l-pgTtl:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(42,48,66,0.5);
}
.l-pgTtl_txt {
  display: inline-block;
  line-height: 1;
  color: #FFF;
  position: relative;
  z-index: 1;
  line-height: var(--line-height-s);
}
.l-pgTtl_txt .jp,
.l-pgTtl_txt .en {
  display: block;
}
.l-pgTtl_txt .jp {
  /* font-size: var(--fs-s); */
  font-size: var(--fs-5l);
  margin-bottom: 1em;
  padding-top: 2em;
  font-weight: 300;
}
.l-pgTtl_txt .en {
  font-family: var(--ff-en);
  font-weight: 300;
  font-size: var(--fs-max);
}
@media print, screen and (min-width:1201px) {
  .l-pgTtl {
    height: 540px;
  }
}
@media print, screen and (max-width:1200px) {
  .l-pgTtl {
    height: calc(480 / 1000 * 100vw);
    max-height: 480px;
    min-height: 400px;
  }
}
@media print, screen and (min-width:641px) {
  .l-pgTtl_txt {
    font-size: var(--fs-m);
  }
}
@media screen and (max-width:640px) {
  .l-pgTtl {
    height: calc(320 / 540 * 100vw);
    max-height: 320px;
    min-height: 260px;
  }
}

/*--------------------------------------------------------------------------------
  パンくずリスト
--------------------------------------------------------------------------------*/
.l-pan {
  padding-top: var(--block-space-min);
  padding-left: var(--side-space);
  padding-right: var(--side-space);
}
.l-pan_list {
  width: 100%;
  max-width: var(--base-width);
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  list-style: none;
  line-height: 2;
  font-size: var(--fs-2s);
}
.l-pan_list li {
  display: inline-block;
}
.l-pan_list li:not(:last-child):after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.25em;
  height: 1em;
  border-top: 1px solid rgba(54,65,87,0.15);
  transform: translateY(50%);
  margin-top: -2px;
  margin-left: 1em;
  margin-right: 0.5em;
}
.l-pan_list a,
.l-pan_list a:visited,
.l-pan_list a:hover {
  color: #828DA0;
  text-decoration: none;
}
@media (hover: hover) {
  .l-pan_list a:hover {
    color: inherit;
  }
}

/*----------------------------------------------------------------------------------------------------

  calendar
  
----------------------------------------------------------------------------------------------------*/
.l-calendar {
  background-color: #E3E4E6;
  padding: var(--block-space-2l) var(--side-space) var(--block-space-3l) var(--side-space);
}
.calendar {
  max-width: var(--base-width);
  margin: 0 auto;
  text-align: left;
}
.calendar-hd {
  padding-bottom: var(--block-space-s);
}
.calendar-body .cal-item {
  padding-bottom: var(--block-space-min);
}
@media print, screen and (min-width:1001px) {
  .calendar-body .cal-item {
    display: flex;
    justify-content: space-between;
  }
  .calendar-body .cal-item .cal {
    width: calc(50% - (clamp(40px, calc(60 / 1200 * 100vw), 60px) / 2));
  }
}
@media print, screen and (max-width:1000px) {
  .calendar-body .cal-item .cal:not(:first-of-type) {
    padding-top: var(--block-space-m);
  }
}

/*----------------------------------------------------------------------------------------------------

  footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  background-color: #2A3042;
  color: #FFF;
  padding: var(--block-space-3l) var(--side-space) 0 var(--side-space);
  font-weight: 100;
}
.l-ft {
  width: 100%;
  max-width: var(--base-width);
  margin: 0 auto;
  text-align: left;
  line-height: var(--line-height-m);
}
@media print, screen and (min-width:1001px) {
  .l-ft {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------------------------
  logo
--------------------------------------------------------------------------------*/
.l-ft-logo {
  width: 100%;
}
@media print, screen and (min-width:1201px) {
  .l-ft-logo img {
    width: 320px;
  }
}
@media print, screen and (max-width:1200px) {
  .l-ft-logo img {
    width: clamp(260px, calc(300 / 1000 * 100vw), 300px);
  }
}
@media screen and (max-width:640px) {
  .l-ft-logo img {
    width: clamp(180px, calc(260 / 540 * 100vw), 260px);
  }
}

/*--------------------------------------------------------------------------------
  address
--------------------------------------------------------------------------------*/
.l-ft-info_ad {
  padding-bottom: 1em;
  padding-top: var(--block-space-m);
}
.l-ft-info_sns {
  list-style: none;
  display: inline-flex;
  align-items: center;
  padding-top: var(--block-space-2s);
}
.l-ft-info_sns li:first-child {
  padding-right: 0.5em;
  font-size: var(--fs-s);
}
.l-ft-info_sns li:not(:first-child) {
  padding-left: 1em;
}
.l-ft-info_sns li img {
  width: 1.4em;
  vertical-align: middle;
}
@media print, screen and (min-width:1001px) {
  .l-ft-info {
    padding-right: var(--block-space-max);
  }
}
@media print, screen and (max-width:1000px) {
  .l-ft-info {
    padding-bottom: var(--block-space-l);
  }
}

/*--------------------------------------------------------------------------------
  診療時間
--------------------------------------------------------------------------------*/
.l-ft-hrs a,
.l-ft-hrs a:visited,
.l-ft-hrs a:hover {
  color: #FFF;
}
@media (hover: hover) {
  .l-ft-hrs a {
    color: #FFF;
  }
}
.l-ft-hrs .p-hrs-list {
  border-bottom-color: rgba(255,255,255,0.15);
}
.l-ft-hrs .p-hrs-list dt,
.l-ft-hrs .p-hrs-list dd {
  border-top-color: rgba(255,255,255,0.15);
}
.l-ft-hrs .p-hrs-list dt {
  font-weight: 400;
}
@media print, screen and (min-width:1001px) {
  .l-ft-hrs {
    flex: 1;
    max-width: 720px;
    align-self: flex-end;
    padding-bottom: var(--block-space-2s);
  }
}

/*--------------------------------------------------------------------------------
  copyright  page top
--------------------------------------------------------------------------------*/
.l-ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--block-space-l);
  padding-bottom: var(--block-space-2s);
}

/* copyright */
.l-copy {
  font-size: var(--fs-2s);
}
@media screen and (max-width:640px) {
  .l-copy .sp-none {
    display: none;
  }
}

/* page top */
.l-pageTop {
  order: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 3em;
  cursor: pointer;
}
.l-pageTop_txt {
  padding-right: 1.5em;
  font-size: var(--fs-3s);
}
.l-pageTop_up {
  display: inline-block;
  position: relative;
  width: 7px;
  height: 100%;
  overflow: hidden;
}
.l-pageTop_up:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.15);
}
.l-pageTop_up .circle {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.l-pageTop_up .circle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFF;
  animation: pageTop 2.2s cubic-bezier(0.22,1,0.36,1) infinite;
}
@keyframes pageTop {
  0% { bottom: -130%; }
  100% { bottom: 115%; }
}
