@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: #edf3f7;
}

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

.l-gNav-logo a {
  display: flex;
  align-items: center;
}

.l-gNav-logo .blue-ball {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #5d97b7;
  border-radius: 50%;
  margin-right: .5em;
}

/*--------------------------------------------------------------------------------
  menu
--------------------------------------------------------------------------------*/
.l-gNav-menu {
  list-style: none;
  line-height: var(--line-height-s);
}

.l-gNav-menu li {
  font-size: var(--fs-3l);
}

.l-gNav-menu li:not(:first-child) {
  padding-top: 1.5em;
}

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

@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;
  align-content: center;
  justify-content: space-between;
  padding: 30px 0;
  padding-right: var(--gNavBtn-width);
  padding-left: var(--gNavBtn-width);
}

header a,
header a:visited,
header a:hover {
  color: #FFF;
  text-decoration: none;
}

@media screen and (max-width:700px) {
  header {
    padding: 20px 0 0 30px;
  }
}

/*--------------------------------------------------------------------------------
  clinic-name
--------------------------------------------------------------------------------*/
.l-hd-clinic {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  letter-spacing: 1pt;
  position: absolute;
  top: 30px;
  left: 40px;
}

.l-hd-clinic .blue-ball {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #5d97b7;
  border-radius: 50%;
  margin-right: .5em;
}

@media screen and (max-width: 638px) {
  .l-hd-clinic {
    top: 20px;
    left: 15px;
  }
}

/*--------------------------------------------------------------------------------
  nav
--------------------------------------------------------------------------------*/
.l-hd-nav-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media print, screen and (min-width:1161px) {
  .l-hd-nav {
    list-style: none;
    display: flex;
    gap: 3em;
  }

  .l-hd-nav a:hover {}
}

@media print, screen and (max-width:1160px) {
  .l-hd-nav {
    display: none;
  }
}

/*--------------------------------------------------------------------------------
  TEL
--------------------------------------------------------------------------------*/

@media print, screen and (min-width:701px) {
  .l-hd-tel-wrap {
    margin-left: 3em;
  }

  .l-hd-tel {
    display: flex;
    align-items: center;
    font-size: var(--fs-2l);
    line-height: 1;
  }

  .l-hd-tel-ic {
    display: inline-block;
    margin-right: .25em;
    width: var(--fs-3s);
    height: auto;
  }

  .l-hd-close {
    letter-spacing: 1pt;
    text-align: right;
  }
}

@media print, screen and (max-width:700px) {
  .l-hd-tel-wrap {
    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);
  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;
  }
}

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

  footer
  
----------------------------------------------------------------------------------------------------*/
footer {
  position: relative;
  background-color: #303030;
  color: #FFF;
  padding: var(--block-space-m) var(--side-space) var(--block-space-min);
}

.l-ft {
  width: 100%;
  max-width: var(--base-width);
  margin: 0 auto;
  text-align: left;
  line-height: var(--line-height-m);
}

.l-ft-contents {
  display: flex;
  justify-content: space-between;
}

.l-ft-contents .clinic-information {
  width: calc(50% - 25px);
}

.l-ft-contents .clinic-information .clinic-name {
  display: flex;
  align-items: center;
  letter-spacing: 1pt;
}

.l-ft-contents .clinic-information .clinic-name .blue-ball {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border-radius: .75em;
  background-color: #4682b4;
  margin-right: .5em;
}

.l-ft-contents .clinic-information .clinic-tel {
  display: block;
  letter-spacing: 1pt;
  margin: .25em 0;
}

.l-ft-contents .clinic-information address {
  font-style: normal;
  line-height: var(--line-height-s);
}

.l-ft-contents .timetable {
  width: calc(50% - 25px);
}

.l-ft-contents .timetable table {
  width: 100%;
}

.l-ft-contents .timetable thead {
  border-top: 1px solid #777;
}

.l-ft-contents .timetable tr {
  border-bottom: 1px solid #777;
}

.l-ft-contents .timetable th,
.l-ft-contents .timetable td {
  padding: .75em .25em;
  font-weight: 400;
  text-align: center;
}

.l-ft-contents .timetable thead th {
  padding: .5em .25em;
}

.l-ft-contents .timetable .opentime {
  width: 8em;
}

/* copyright */
.l-copy {
  margin-top: var(--block-space-l);
  color: #666;
}

@media screen and (max-width:800px) {
  .l-ft-contents {
    flex-wrap: wrap
  }

  .l-ft-contents .clinic-information {
    width: 100%;
  }

  .l-ft-contents .timetable {
    width: 100%;
    margin-top: var(--block-space-3s);
  }

  .l-copy {
    margin-top: var(--block-space-max);
  }
}


/*--------------------------------------------------------------------------------
  page top
--------------------------------------------------------------------------------*/

.scrollup {
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 30px;
  right: 30px;
}

.scrollup:hover {
  cursor: pointer;
}

.scrollup:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 60px;
  background: rgba(255, 255, 255, .5);
}

/* 丸の描写 */
.scrollup:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  animation:
    upcirclemove 1.6s ease-in-out infinite,
    upcirlemovehide 1.6s ease-out infinite;
}

@keyframes upcirclemove {
  0% {
    bottom: 0px;
  }

  100% {
    bottom: 50px;
  }
}

@keyframes upcirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

.scrollup span {
  position: relative;
  bottom: 1.5em;
  color: #fff;
  text-align: center;
}

@media screen and (max-width:480px) {
  .scrollup {
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 15px;
  }

  .scrollup:after {
    height: 40px;
  }

  .scrollup span {
    bottom: 1em;
  }

  @keyframes upcirclemove {
    100% {
      bottom: 30px;
    }
  }
}


/* ===============================================
マージンstyle
=============================================== */

.m_l, .m_l2 {
  margin-bottom: 25px;
  margin-top: var(--block-space-min);
}

@media screen and (max-width: 1150px) {
  .m_l, .m_l2 {
    margin-bottom: 0;
    margin-top: 50px;
  }

  .career h4 {
    margin-bottom: 10px;
  }
}