/* ヘッダーは後で考える
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 40px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.16);
}
*/
html {
  font-family: Serif;
}

.pc-nav-button {
  background-color: white;
}
.pc-nav-button > div {
  display: grid;
  transition: background .5s;
}
.pc-nav-button > div:hover {
  color: white;
  background-color: rgba(0, 0, 0, .5);
}



.global-nav {
  position: fixed;
  right: -320px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 40px;
  background-color: #fff;
  transition: all .6s;
  z-index: 999;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}
.global-nav > ul > li:not(:first-child) {
  border-top: solid #8b7923 .1px;
}
.hamburger {
  margin: 10px;
  opacity: 0.7;
  position: fixed;
  right: 0;
  top: 0;
  width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 40px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 1000;
}
.hamburger__line {
  position: fixed;
  right: 21px;
  width: 18px;
  height: 1px;
  background-color: #000;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 24px;
}
.hamburger__line--2 {
  top: 30px;
}
.hamburger__line--3 {
  top: 36px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 998;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 30px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 30px;
}

.nav-icon {
  width: 18px;
  text-align: center;
}


/* top-header */
.top_image {
  height: 310px;
  background-image: url('/wp-content/themes/kiseki/assets/img/common/top_bg_img_1.jpg?20231208');
  background-color: white;
  background-size: cover;
  animation-delay: 100ms;
}
.matsudo-sui_top_image {
  background-image: url('/wp-content/themes/kiseki/assets/img/common/matsudo-sui_top_bg_img_1.jpg?20240609');
}
.nakano-sui_top_image {
  background-image: url('/wp-content/themes/kiseki/assets/img/common/nakano-sui_top_bg_img_1.jpg?20231208');
}
.kitasenju-rei_top_image {
  background-image: url('/wp-content/themes/kiseki/assets/img/common/kitasenju-rei_top_bg_img_1.jpg?20231208');
}
@media screen and (min-width: 640px) {
  .top_image {
    height: 500px;
  }
}
@media screen and (min-width: 959px) {
  .top_image {
    background-image: url('/wp-content/themes/kiseki/assets/img/common/top_bg_img_pc.jpg?20231208');
    background-size: auto;
  }
  .matsudo-sui_top_image {
    background-image: url('/wp-content/themes/kiseki/assets/img/common/matsudo-sui_top_bg_img_pc.jpg?20240609');
  }
  .nakano-sui_top_image {
    background-image: url('/wp-content/themes/kiseki/assets/img/common/nakano-sui_top_bg_img_pc.jpg?20231208');
  }
  .kitasenju-rei_top_image {
    background-image: url('/wp-content/themes/kiseki/assets/img/common/kitasenju-rei_top_bg_img_pc.jpg?20231208');
  }
}

.header__image img {
  height: 100%;
}

.therapist-card-image {
  height: 181px;
  width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media screen and (min-width: 640px) {
  .therapist-card-image {
    height: 450px;
  }
}
@media screen and (min-width: 959px) {
  .therapist-card-image {
    height: 500px;
  }
}


.recruit-requirements-list {
  border: solid #8b7923 .5px;
  padding: 10px;
}

.recruit-requirements-list__row {
  padding: 20px;
  border-bottom: solid #d1cdba 1px;
}

.recruit-requirements-list__row:last-child {
  border-bottom: none;
}

.recruit-requirements-list__row > dt {
  margin-bottom: 10px;
}
.recruit-requirements-list__row > dt:before {
  content: "■️️";
  padding-right: 8px;
}

.recruit-requirements-list__row > dd > ul {
  list-style: none;
}
.recruit-requirements-list__row > dd > ul > li {
  padding: 8px;
}
.recruit-requirements-list__row > dd > ul > li:before {
  content: "★";
  left: 48px;
  position: absolute;
}

.recruit-requirements-list__row > dt, dd {
  display: block;
}




/* twitter icon */
.with-twitter-link-image {
  position: relative;
}

.with-twitter-link-image .social-link {
  width: 40px;
  height: 40px;
  color: #ffffff;
  background-color: #0f1419;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/* 背景差し替えで一旦コメントアウト */
/*
body::before {
  display: block;
  width: 100%;
  height: 100%;
  content: " ";
  position: absolute;
  background-color: #a2a2a2b8;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  opacity: .9;
}
*/

.line-banner-inner-text {
  font-family: none;
  text-align: center;
  color: #00B900;
  font-size: 30px;
}

.payment-banner-inner-text {
  font-family: none;
  text-align: center;
  color: #3e3e3e;
}

.banner-inner-text {
  font-family: Serif;
  font-style: italic;
  line-height: 1.5em;
  text-align: center;
  color: #3e3e3e;
}

.banner-img {
  width: 100%;
  object-fit: cover;
}

.line-banner-img {
  height: 130px;
  width: 100%;
  object-fit: cover;
}

.payment-banner-img {
  height: 130px;
  width: 100%;
  object-fit: contain;
}


@media screen and (min-width: 959px) {
  .contact-form-wrapper {
    padding: 20px 100px;
  }
}


/* フッターメニュー */
footer {
  background-color: rgba(255,255,255,0.9);
  margin-bottom: 60px;
}
@media screen and (min-width: 959px) {
  footer {
    margin-bottom: 0;
  }
}

.footer-menu > tbody > tr > td {
  border-top: solid #8b7923 .1px;
  border-bottom: solid #8b7923 .1px;
}


.top-line-recruit-box {
  border: solid #d1cdba 4px;
}

.top-line-recruit-box__id {
  background-color: #d1cdba;
  text-align: center;
  line-height: 2em;
  font-size: 26px;
  color: #796c31;
}


.reserve-notice {
  margin: 10px 0;
}

.reserve-notice::before, .reserve-notice::after {
  content: "♦";
  color: #796c31;
}


.top__info-box {
  background-color: #ffffff;
  color: #666
}


/* 吸着フッター */
.footer__info-box {
  height: 60px;
  text-align: center;
  background: #ffffff;
  color: #666
}

.sticky-contact-list {
  height: 100%;
}

.sticky-contact-list-li {
  height: 50%;
}

.sticky-contact-list-li-tel {
  font-size: 26px;
}


.sticky-header {
  background: #fff;
  opacity: .9;
}



/* Systemページ */
/* System table */
@font-face {
  /*font-family: 'Sail';*/
  src: url(/mock/assets/font/Sail/Sail-Regular.ttf);
}

@font-face
{
  font-family: XANO明朝;
  src: url('https://cdn.leafscape.be/XANO-mincho/XANO-mincho_web.woff2')
  format("woff2");
}



h2 {
  font-family: XANO明朝;
}

.h2-content {
  padding: 5%;
  border: double #8b7923 4px;
}



/* uikit override */
.uk-heading-line > :before {
  border-bottom: 2px solid #0052c0;
}
.uk-heading-line > :after {
  border-bottom: 2px solid #0052c0;
}

.uk-heading-bullet::before {
  border-color: #8b7923;
}

h2 {
  margin-bottom: 10px !important;
  font-weight: bold;
}

h3 {
  font-family: Serif;
}

/* uikit override */
.uk-scrollspy-inview {
  animation-duration: 1.2s;
}

.uk-card-small .uk-card-body, .uk-card-small.uk-card-body {
  padding: 20px 10px;
}

.schedule-list > .uk-grid-margin {
  margin-top: 10px;
}

/* override border color on room selector */
.uk-button-default.uk-active {
  border: 1px solid #e5e5e5;
}
.uk-button-default {
  border-color: #999;
}

.google-map-wrapper iframe {
  width: 100%;
}
