@charset "utf-8";
/* Generic Child-Oiso : Base Style
    サイト全体のスタイル
    -フォント読み込み
    -共通要素の上書き
    -共通要素
    -外枠 div id="wrapper" #wrapper
    -ヘッダ header id="header" #header
    -コンテナ div id="container" #container
    -フッタ footer id="footer" #footer
    -ログイン時表示「編集」ボタンスタイル .post-edit-link
        ※ログイン時のみ表示される記事の編集画面へのリンクボタン
*/
/*　Google Fonts 読込  Zen Old Mincho（Regular 400） , Zen Kaku Gothic New（Regular 400） , Poppins（Regular 400）　*/
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap');
/*
    font-family: 'Poppins', sans-serif;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-family: 'Zen Old Mincho', serif;
*/

.ten-mincho {
font-family: ten-mincho, serif!important;
font-weight: 400;
font-style: normal;
}


/* 共通要素の上書き
---------------------------------------------------- */
/*ダークモードの設定上書き*/
@media(prefers-color-scheme:dark){
    body, #container{
        background:#fff;
    }
}

/*テキスト選択時カラー*/
::selection {
    background: rgba(3,164,239,.35);
    color: #666;
}
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    transition: unset;
}
html {
    scroll-behavior: auto;
}
body {
    animation: fadeIn .5s ease 0s 1 normal;
    -webkit-animation: fadeIn .5s ease 0s 1 normal;

    color: #000;
    -webkit-text-size-adjust: 100%;

  animation: fadeIn .5s ease 0s 1 normal;
    -webkit-animation: fadeIn .5s ease 0s 1 normal;
    /*background: #fff url("../images/common/bg_body_pre.jpg") no-repeat center top;*/
    background-attachment: fixed;
    background-size: cover;
    color: #000;
    -webkit-text-size-adjust: 100%;
      /*background-color: #F7F1EB;*/
      font-family: 'Noto Sans JP', sans-serif;

}
/*ページ読み込み時のフェードアニメーション用キーフレーム*/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
address, cite, var {
    font-style: normal;
}
pre, code {
    font-family:inherit;
}
dd{ margin-left: 0;}
/*フォームスタイル上書き*/
textarea, input[type="text"], input[type="button"], input[type="submit"], input[type="reset"], input[type="search"], input[type="password"] {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 5px;
}
input[type="search"] {
    -webkit-appearance: textfield
}
input , textarea {
    background: #fff;
    border: #ddd solid 1px;
    border-radius: 5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1em;
    margin: 0;
    outline: 0;
    padding: .5em;
}
input:focus, textarea:focus {
    background-color: #f7f7f7;
    border:solid 1px #88CB7F;
}
input[type="submit"], button, .button {
    background: rgba(3,164,239,1.00);
    border: 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-family: inherit;
    font-size: 18px;
    margin: 0 auto;
    padding: .5em 2em;;
    text-align: center;
    text-decoration: none;
}
input[type="submit"]:hover, input[type="submit"]:focus, button:hover, button:focus, .button:hover, .button:focus {
    opacity: 0.8
}

/*h要素スタイル上書き*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 0;
    margin-top: 0;
}
h1 {
    font-size: 2em;
}
h2 {
    font-size: 1.75em;
}
h3 {
    font-size: 1.25em;
}
h4 {
    font-size: 1.125em;
}
h5 {
    font-size: 1.125em;
}
h6 {
    font-size: 1.125em;
}

/*p（段落）要素スタイル上書き*/
.page .content p,
.single-post .content p {
    font-size: 1.05em;
    line-height: 160%;
    margin: 1em 0;
    font-family: 'Noto Sans JP', sans-serif;
}
/*img（画像）右クリック禁止*/
img {
    pointer-events: none;
}
/*aリンク内のimg（画像）イベント許可*/
a img {
    pointer-events: auto;
}

/*a（ハイパーリンク）要素スタイル上書き*/
a {
    color: rgba(133,195,124,1.00);
    transition: .3s;
}
a:hover {
    color: rgba(133,195,124,.75);
}
a img {
    transition: .3s;
}

/*ul,ol（リスト、順序リスト）要素スタイル上書き*/
.entry-content ul,
.widget-container ul,
.comment-body ul,
.entry-content ol,
.widget-container ol,
.comment-body ol {
    margin: 30px 0 30px 1em;
}
.entry-content ol,
.widget-container ol,
.comment-body ol {
    margin-left: 1em;
}
.entry-content ul li,
.widget-container ul li,
.comment-body ul li {
    list-style-type: initial;
}
/*エントリーメタデータスタイル上書き*/
.entry-meta, .entry-meta a, .entry-footer, .entry-footer a, .comment-meta, .comment-meta a, .comment-author, .comment-author a {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
/*ヘッダ・コンテナ・フッタスタイル上書き*/
#header, #container, #footer {
    padding: 0;
}
#site-title h1, #site-title a {
    font-size: 0;
    font-weight: normal;
}
#container::after{
    display: none;
}
/* reCAPTCHA V3 バッヂ非表示*/
/*バッヂを非表示にする際はフォームの送信ボタン下にGoogleが指定する一文を記載すること*/
.grecaptcha-badge {
    visibility: hidden;
}
/* PC/SP切り替え */
.pc { display: block !important; }
.sp { display: none !important; }


/* 共通要素
---------------------------------------------------- */

/* 外枠 div id="wrapper" #wrapper
---------------------------------------------------- */
#wrapper {
    padding: 0;
}

/* ヘッダ header id="header" #header
---------------------------------------------------- */
#header {
    background-color: #fff;
    height: auto;
    margin: 0;
    /*position: fixed; */
    /*ヘッダ固定の指定を外す際はposition:relativeに変更し、header.php内の「ヘッダーの高さ分だけコンテンツを下げる」をコメントアウトし、
    ログイン時のアドミンバー表示調整（body.logged-in #header）もコメントアウトする
    （@media screen and (max-width: 782px)にもログイン時のアドミンバー表示調整の記述有）
    */
    position: relative;
        left: 0;
        top: 0;
    width: 100%;
    z-index: 9999;
}
/*ログイン時のアドミンバー表示調整*/
/*
body.logged-in #header {
        top: 32px;
}
*/
#header:after {
    display: none;
}
#header .header-wrap {
    position: relative;
    width: 100%;

}
/*サイト説明文（キャッチコピー）*/
#site-description{
    display: none;
}

/*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / 各種コンテンツリンクボタン：.cont-btn）*/
#header-contents{
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
}
/*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
#site-title {
    width: 15%;
    margin-bottom: 0;
}
#site-title a{
    color: #333;
}
#site-title a span{
    display: inline;
}
/*ヘッダコンテンツ - 住所・電話番号*/
.menu-contents-area {
  width: 85%;
  display: flex;
  justify-content: flex-end;
}
#header-contents {
    font-size: .875rem;
}
#header-contents ul.link-btn {
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
#header-contents ul.link-btn li {
  margin: 0px 5px;
}
#header-contents .sub-contents {
  display: flex;

}
#header-contents .sub-contents .time {
  font-size: 16px;
  position: relative;
  margin-right: 20px;
  margin-left: 60px;
}
#header-contents .sub-contents .time span {
  vertical-align: revert;
  align-items: center;
  display:flex;
  margin-bottom: 10px;
}
#header-contents .sub-contents .time span:last-child {
  margin-bottom: 0px;
}
#header-contents .sub-contents .time .morning::before{
  content: "";
  background-image: url(../images/common/header/time-morning.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  padding-left: 5px;
}
#header-contents .sub-contents .time .afternoon::before{
  content: "";
  background-image: url(../images/common/header/time-afternoon.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  padding-left: 5px;
}
#header-contents .sub-contents .time .tel::before{
  content: "";
  background-image: url(../images/common/header/tel.png);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  padding-left: 5px;
}
#header-contents ul.link-btn li a{
  display: block;
  font-size: 14px;
  text-decoration: none;
  font-family: 'Kosugi Maru', sans-serif;
}
#header-contents .faq a{
  color: #85C37C;
  padding: 15px 5px;
  text-align: center;
  width: 110px;
  border-radius:12px;
  border:1px solid #85C37C;
}
#header-contents .faq a span{
  display: block;
  margin-top: 8px;
}
#header-contents .faq a:hover{
  background-color: #E5F4DF;
}
#header-contents .inq a {
  color: #fff;
  padding: 15px 5px;
  text-align: center;
  width: 110px;
  border-radius:12px;
  background-color: #EDA84A;
  border:1px solid #EDA84A;
}
#header-contents .inq a span{
  display: block;
  margin-top: 8px;
}
#header-contents .inq a:hover{
  background-color: #EFBF86;
}




#header-contents ul li{
    display: inline;
}

#header-contents li.facility_phone{
  color: #000;
  position: relative;
  padding-left: 60px!important;
  text-shadow: 1px 1px 2px #fff, 0 0 1em #fff, 0 0 0.2em #fff;
}
#header-contents li.facility_phone span{
  font-size: 22px;
  letter-spacing: 2px;

}
#header-contents li.facility_fax{
  color: #000;
  position: relative;
  padding-left: 60px!important;
  text-shadow: 1px 1px 2px #fff, 0 0 1em #fff, 0 0 0.2em #fff;
}
#header-contents li.facility_fax span{
  font-size: 22px;
  letter-spacing: 2px;
}
#header-contents .facility_phone::before {
    background-image: url(../images/common/ico-tel.png);
    background-position: center center;
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    width: 40px;
    height: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  #header-contents .facility_fax::before {
      background-image: url(../images/common/ico-fax.png);
      background-position: center center;
      background-repeat: no-repeat;
      content: "";
      position: absolute;
      left: 15px;
      top: 50%;
      width: 40px;
      height: 40px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

#header-contents .facility_phone a{}
#header-contents .facility_phone a:hover{
    color: #fff;
    text-decoration: underline;
}
/*サイトロゴ（画像）*/
#site-title #logo-container{
    height: auto;
    margin: 0;
    max-height: 60px;
}
#site-title #logo-container img{
    height: 100%;
    width: auto;
}
/*法人名*/
#site-title .corporation-container{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: .875rem;
    padding: 0 0 0 .5rem;
}
/*サイトタイトル*/
#site-title .title-container{
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    padding: 0 0 0 .5rem;
}
/*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
#header-contents .cont-btn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 10px;
    margin-top: 5px;
}
#header-contents .cont-btn li{
    display: inline-block;
    padding: .5rem;
}
#header-contents .cont-btn li a{
    align-items: center;
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    height: 2rem;
    justify-content: center;
    text-decoration: none;
    transition: .3s;
    width: 2rem;
}
#header-contents .cont-btn li a:hover{
    background-color: rgba(3,164,239,1.00);
    color: #fff;
}
#header-contents .cont-btn li.link-access a::before{
    content: "\f041";
    font-family: FontAwesome;
    display: inline;
}
#header-contents .cont-btn li.link-inquiry a::before{
    content: "\f003";
    font-family: FontAwesome;
    display: inline;
}
#header-contents .cont-btn li.link-facebook a::before{
    content: "\f09a";
    font-family: FontAwesome;
    display: inline;
}
#header-contents .cont-btn li.link-instagram a::before{
    content: "\f16d";
    font-family: FontAwesome;
    display: inline;
}
/*検索窓のエリア*/
#header-contents .cont-btn li.search{
    z-index: 2;/*最前面に設定。数字は変更可*/
}
#header-contents .cont-btn li.search form{
    display: flex;
}
#header-contents .cont-btn li.search form input{
    font-size: .875rem;
    width: 12rem;
    height: 40px;
    border:solid 1px #88CB7F;
}
#header-contents .cont-btn li.search form button {
    align-items: center;
    display: flex;
    font-size: 1rem;
    margin: 0 0 0 .5rem;
    padding: .5em ;
    transition: .3s;
}
#header-contents .cont-btn li.search form button::before{
    background: url("../images/common/ico_search.svg") center no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    width: 1rem;
}
#header-contents .cont-btn li.search form button:hover,
#header-contents .cont-btn li.search form button:focus {
    opacity: 0.8
}


/*グローバルナビゲーション*/
.under-only-gm #menu ul li a{
    align-items: center;
    background-color: #fff;
    border-radius: 55px;
    color: #000;
    display: -webkit-flex;
    display: flex;
    font-size: 19px;
    height: 57px;
    justify-content: center;
    text-decoration: none;
    width: 100%;
}
#menu {
    width: 100%;
    max-width: 900px;
}

#menu ul {
    align-items: center;
    display: flex;
    font-size: inherit;
    justify-content: space-between;
    margin: 0 0px 0 0;
    width: auto;
}
#menu ul li{
    align-items: center;
    font-family: 'Kosugi Maru', sans-serif;
    width: 17%;
    position: relative;
    padding: 0px 5px;
}
#menu ul li:last-child {
  border-right: 0px solid #85C37C;
}
#menu ul li a:hover {
  border-right: 0px solid #85C37C;
}
#menu ul li a {
    align-items: center;
    color: #000;
    display:block;
    font-size: 15px;
    height: 80px;
    margin: 0;
    padding: 10px 3px;
    text-align: inherit;
    text-decoration: none;
    text-align: center;
}

#menu ul li a:hover,
#menu ul li a:focus ,
#menu ul li.current-menu-item a ,  /*メニューページ current表示*/
#menu ul li.current-page-ancestor a , /*メニューの子ページ current表示*/
body.facility-template #menu ul li.menu-item-object-facility a /*施設情報（カスタム投稿タイプ） current表示*/ {
    color: #88CB7F;
    text-decoration: none;
}

#menu ul li:nth-child(1) a::before {
    content: url(../images/common/header/ico-visit.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li:nth-child(2) a::before {
    content: url(../images/common/header/ico-dialysis.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li:nth-child(3) a::before {
    content: url(../images/common/header/ico-riha.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li:nth-child(4) a::before {
    content: url(../images/common/header/ico-about.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li:nth-child(5) a::before {
    content: url(../images/common/header/ico-access.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li:nth-child(6) a::before {
    content: url(../images/common/header/ico-recruit.png);
    background-position: center top;
    background-repeat: no-repeat;
    display: block;
}
#menu ul li a:hover {
  color: #fff;
  background-color: #BADCAD;
  border-radius: 8px;
}
#menu ul li:nth-child(1) a:hover::before {
  content: url(../images/common/header/ico-visit-on.png);
}
#menu ul li:nth-child(2) a:hover::before {
  content: url(../images/common/header/ico-dialysis-on.png);
}
#menu ul li:nth-child(3) a:hover::before {
  content: url(../images/common/header/ico-riha-on.png);
}
#menu ul li:nth-child(4) a:hover::before {
  content: url(../images/common/header/ico-about-on.png);
}
#menu ul li:nth-child(5) a:hover::before {
  content: url(../images/common/header/ico-access-on.png);
}
#menu ul li:nth-child(6) a:hover::before {
  content: url(../images/common/header/ico-recruit-on.png);
}
/*SP用グローバルナビハンバーガーボタン*/
#menu .menu-toggle {
    display: none;
}
/*SP用ヘッダコンテンツ*/
#menu .sp-menu-contents {
    display: none;
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header{
    height: 250px;
    margin: 0;
    padding: 0;
    width: 100%;
    background: url(../images/common/bg_sub-header.jpg) center no-repeat;
    background-size: cover;
}
#sub-header .sub-header-wrap{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    width: 1240px;
}
#sub-header .sub-header-wrap .sub-header-title{
    height: fit-content;
    text-align: center;
    width: 100%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .25), 1px -1px 3px rgba(0, 0, 0, .25), -1px 1px 3px rgba(0, 0, 0, .25), -1px -1px 3px rgba(0, 0, 0, .25);
}
#sub-header .sub-header-wrap .sub-header-title h2{
    color: #fff;
    font-size: 2em;
    letter-spacing: .25rem;
    font-family: ten-mincho, serif !important;
    font-weight: 400;
    font-style: normal;
}
#sub-header .sub-header-wrap .sub-header-title .slag{
    color: #fff;
    font-size: .875em;
    letter-spacing: 5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .25), 1px -1px 3px rgba(0, 0, 0, .25), -1px 1px 3px rgba(0, 0, 0, .25), -1px -1px 3px rgba(0, 0, 0, .25);
}
/*メインコンテンツ - wrapp */
.container-wrap{
    background-color: #fff;
    flex: 1;
    height: auto;
    margin: 0;
    padding: 0;
    width: 100%;
}
/*メインコンテンツ - パンくずナビ*/
.breadcrumbs{
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    width: 100%;
}
.breadcrumbs .bradcrumbs-wrap{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 0;
    padding: .5rem;
}
.breadcrumbs .bradcrumbs-wrap span{
    font-size: .875em;
    padding:  0 .15rem;
}
.breadcrumbs .bradcrumbs-wrap .material-symbols-outlined{
    font-family: 'Material Icons';
}

#container {
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2em auto;
    width: 1240px;
}
/*メインコンテンツ - メインカラム*/
main.content {
    float: none;
    margin: 0;
    padding: 0 3em 3em 0;
    width: 75%;
}
/*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
body.page-parent main.content { /*親（body.page-parent）の場合メインカラム100%*/
    width: 100%;
}
body.page-parent.page-child main.content { /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
    width: 75%;
}

/*メインコンテンツ - サイドバー*/
aside#sidebar {
    float: none;
}
/*メインコンテンツ - サイドバー - 固定ページ最上の親ページのみサイドバー非表示*/
body.page-parent aside#sidebar { /*親（body.page-parent）の場合サイドバー非表示 */
    display: none;
}
body.page-parent.page-child aside#sidebar { /*子ページを持つ親（body.page-parent.page-child）の場合サイドバー表示*/
    display: block;
}

/*メインコンテンツ - サイドバー - 固定ページ子ページリスト , その他ページ用ウィジェットページリスト*/
aside#sidebar .child-page-box{
    margin: 0 0 3rem;
}
aside#sidebar .widget-box > li#side-page-link ul{
    margin: 0;
}
aside#sidebar .widget-box > li#side-page-link ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}
aside#sidebar .child-page-box > ul ,
aside#sidebar .widget-box > li#side-page-link ul{
    border-top: #ddd solid 1px;
}
aside#sidebar .child-page-box ul li a ,
aside#sidebar .widget-box > li#side-page-link ul li a{
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
    cursor:pointer;
}
aside#sidebar .child-page-box ul li a:hover ,
aside#sidebar .widget-box > li#side-page-link ul li a:hover{
    background-color: #f7f7f7;
    color: #666;
}
/*該当ページ滞在時*/
aside#sidebar .child-page-box ul li.current_page_item > a ,
aside#sidebar .widget-box > li#side-page-link ul li.current_page_item > a {
    background-color: #f7f7f7;
    color: #666;
}

/*第一階層*/
aside#sidebar .child-page-box > ul > li ,
aside#sidebar .widget-box > li#side-page-link ul li{
    border-bottom: #ddd solid 1px;
}
aside#sidebar .child-page-box ul > li > a ,
aside#sidebar .widget-box > li#side-page-link ul li > a{
    padding: 1rem 0;
}
aside#sidebar .child-page-box > ul > li > a::before ,
aside#sidebar .widget-box > li#side-page-link ul li > a::before{
    content: "\e5cc";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}
/*第二階層*/
aside#sidebar .child-page-box > ul > li > ul {
    border-top: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li {
    border-bottom: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li:last-child {
    border-bottom: none;
}
aside#sidebar .child-page-box > ul > li > ul > li a{
    padding: .75rem 0 .75rem 1rem;
}
aside#sidebar .child-page-box > ul > li > ul > li a::before{
    content: "\eac9";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}
/*第三階層*/
aside#sidebar .child-page-box > ul > li > ul > li > ul{
    border-top: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li {
    border-bottom: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li >  ul > li:last-child {
    border-bottom: none;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li a{
    padding: .75rem 0 .75rem 2rem;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li a::before{
    content: "-";
    padding: 0 .5rem 0 0;
}
/*第三階層以下*/
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul{
    border-top: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li {
    border-bottom: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li >  ul > li ul li:last-child {
    border-bottom: none;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li a{
    padding: .75rem 0 .75rem 3rem;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li a::before{
    display: none;
}


/*メインコンテンツ - サイドバー - ウィジェット*/
/*ウィジェットタイトル*/
aside#sidebar .widget-box li.widget-container{
    margin: 0 0 3rem;
}
aside#sidebar .widget-box li h3{
    align-items: center;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    padding: .5rem;
}
aside#sidebar .widget-box li h3::before ,
aside#sidebar .widget-box li h3::after{
    background-color: #000;
    content: "";
    display: block;
    width: 50px;
    height: 1px;
}
/*WP-members ログインフォーム*/
aside#sidebar .wp-members #wp-members{
    background-color: #e7f5f5;
    border-radius: .5rem;
    padding: 1rem;
}
aside#sidebar .wp-members #wp-members h3{
    background-color: transparent;
    color: rgba(3,164,239,1.00);
    text-align: center;
}
/*WP-members ログインフォーム - ログイン時ステータス表示*/
aside#sidebar .wp-members #wp-members .login_widget_status{
    margin: .5rem 0 0 0;
    text-align: center;
}
/*WP-members ログインフォーム - ログイン時ログアウトリンクボタン*/
aside#sidebar .wp-members #wp-members .login_widget_status a{
    background-color: #ccc;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    margin: .5rem auto 0 auto;
    padding: .25rem 1rem;
    text-decoration: none;
    width: auto;
}
aside#sidebar .wp-members #wp-members .login_widget_status a:hover{
    opacity: .8;
}
/*WP-members ログインフォーム - 非ログイン時フォーム*/
aside#sidebar .wp-members #wp-members .widget_form input{
    width: 100%;
}
aside#sidebar .wp-members #wp-members .widget_form .button_div input{
    width: auto;
    margin: 0 auto;
    padding: .25rem 1rem;
}

/*カテゴリ・アーカイブ・カスタム投稿タイプカテゴリ*/
aside#sidebar .widget_categories ul ,
aside#sidebar .widget_archive ul {
    margin: 0;
    padding: 0;
}
aside#sidebar .widget_categories ul li ,
aside#sidebar .widget_archive ul li{
    border-bottom: #ddd solid 1px;
    list-style: none;
    line-height: normal;
    margin: 0;
}
aside#sidebar .widget_categories ul li a ,
aside#sidebar .widget_archive ul li a{
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
}
aside#sidebar .widget_categories ul li a:hover ,
aside#sidebar .widget_archive ul li a:hover{
    background-color: #F7F7F7;
    color: #666;
}
aside#sidebar .widget_categories ul li a::before ,
aside#sidebar .widget_archive ul li a::before {
    content: "\e5df";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

/*お知らせ 特定カテゴリのみの新着表示*/
aside#sidebar .cat-post-widget ul {
    margin: 0;
    padding: 0;
}
aside#sidebar .cat-post-widget ul li{
    border-bottom: #ddd solid 1px;
    list-style: none;
    line-height: normal;
    margin: 0;
    padding: 0;
}
aside#sidebar .cat-post-widget ul li > div {
    margin: 0;
}
aside#sidebar .cat-post-widget ul li > div a{
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
}
aside#sidebar .cat-post-widget ul li > div a:hover{
    background-color: #F7F7F7;
    color: #666;
}
aside#sidebar .cat-post-widget ul li > div a::before {
    content: "\e5df";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

/*メインコンテンツ - サイドバー非表示かつ横幅100％（外来診療ページ）*/
body.page-id-166 main.content {
    width:100%;
}
body.page-id-166 aside#sidebar {
    display: none;
}
/*メインコンテンツ - サイドバー非表示かつ横幅100％（人工透析ページ）*/
body.page-id-164 main.content {
    width:100%;
}
body.page-id-164 aside#sidebar {
    display: none;
}
/* フッタ footer id="footer" #footer
---------------------------------------------------- */
#footer {
    font-size: .875rem;
    margin: 0;
    padding: 0;
    position: relative;
}
#footer::before {
  content: "";
  background-image: url(../images/common/footer/top-img.png);
  background-repeat: repeat-x;
  position: absolute;
  top: 0%;
  z-index: 1;
  width: 100%;
  height: 28px;

}
/*フッタ - フッタナビ*/
#footernav{
  font-size: 20px;
  padding: 100px 0px 160px 0px;
}
#footernav .in{
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 1260px;
}
#footernav .in .left-area{
  width: 30%;
  }
#footernav .in .right-area{
  width: 70%;
  }

#footernav .menu-footer-container{
    margin: 0 auto;
}
#footernav .menu-footer-container .menu{
    display: flex;
    flex-wrap: wrap;
    justify-content:
    padding: 0 0 1rem;
    width: 100%;
    padding-left: 200px;
}
#footernav .menu-footer-container .menu li a{
    color: rgba(0,0,0,1.00);
    line-height: 160%;
    text-decoration: none;
    font-size: 16px;
}
#footernav .menu-footer-container .menu li a:hover{
    color: rgba(0,0,0,.50);
    text-decoration: none;
}
/*フッタ - フッタナビ ： 第一層*/
#footernav .menu-footer-container .menu > li{
    padding: 1rem 0;
    width: 33%;
}

#footernav .menu-footer-container ul.sub-menu {
  margin-top: 20px;
}
#footernav .menu-footer-container ul.sub-menu li {
  margin-bottom: 0px;
}

#footernav .menu-footer-container .menu > li > a{
    font-size: 18px;
    color:#85C37C;
        font-weight: bold;
}
#footernav .address {
  margin-bottom: 40px;
}
#footernav .address dd p{
  margin: 5px 0px;
  font-size: 16px;
}
#footernav .address dd p{
  margin: 5px 0px;
  font-size: 16px;
}
.address > dl > dd p.facility_phone::before {
  content: "TEL:";
    display: inline;
    padding: 0 10px 0 0;
}
#footernav .address img {
  margin-bottom: 60px;
  width: 200px;

}


#footernav .address .facility_zip::before {
  background-image: url(../images/common/footer/ico-access.png);
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  width: 18px;
  height: 16px;
  display: inline-block;
  margin-right: 3px;
}
.address > dl > dd p.facility_phone::before {
      padding: 0 0px 0 0;
}
#footernav .address .facility_phone::before {
  background-image: url(../images/common/footer/ico-tel.png);
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  width: 18px;
  height: 16px;
  display: inline-block;
  margin-right: 3px;
}
#footernav .address .facility_fax::before {
  background-image: url(../images/common/footer/ico-fax.png);
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  width: 18px;
  height: 16px;
  display: inline-block;
  margin-right: 3px;
}
#footernav .inquiry-btn a{
    background-color: #EDA84A;
    border: 1px solid #EDA84A;
    color: #fff;
    display: block;
    padding: 20px 50px;
    text-decoration: none;
    width: 300px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
#footernav .inquiry-btn a:hover{
    background-color:#fff;
    border: solid 1px #EDA84A;
    color: #EDA84A;
  }
/*フッタ - フッタナビ ： 第二層*/
#footernav .menu-footer-container .menu > li > ul{
    padding: 0 0 0 1rem;
}

/*フッタ - フッタナビ ： 第一層 診療科・部署*/
#footernav .menu-footer-container .menu > li.section{
    width: 100%;
}
/*フッタ - フッタナビ ： 第二層 診療科・部署*/
#footernav .menu-footer-container .menu > li.section > ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 1rem 1rem;
}
#footernav .menu-footer-container .menu > li.section > ul > li{
    width: 23%;
}
#footernav .menu-footer-container .menu > li.section > ul::after ,
#footernav .menu-footer-container .menu > li.section > ul::before {
    content: "";
    display: block;
    height: 0;
    width: 23%;
}
#footernav .menu-footer-container .menu > li.section > ul::before {
    order: 1;
}
/*フッタ - フッタサブナビ*/
#footer-sub-nav .menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#footer-sub-nav .menu li{
    padding: 0 1rem;
}
#footer-sub-nav .menu li:last-child{
    border-right: none;
}
#footer-sub-nav .menu li a{
    text-decoration: none;
}
#footer-sub-nav .menu li a:hover{
    color: rgba(0,0,0,.50);
    text-decoration: none;
}
/*フッタ - コピーライト・eラーニングバナー・ページトップ*/
#footer-bottom{
    align-items: center;
    background-color: #88CB7F;
    display: flex;
    justify-content: space-between;
    margin: 0;
}
#footer-bottom .in{
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding: 15px 24px;
}
#footer-bottom .in a{
   color: #fff;
}
#footer-bottom > p {
    padding: .75em;
    margin: 0;
}
/*フッタ - コピーライト・ページトップ ： コピーライト*/
#copyright {
    flex: 1;
}
#copyright,
#copyright a {
    color: #fff;
    text-align: left;
}
#footer-bottom .in p{
  margin: 0px 0px!important;
}
/*フッタ - コピーライト・eラーニングバナー・ページトップ ： eラーニングバナー*/
#staff-link{
    background-color: rgba(3,164,239,1.00);
    padding: 0 !important;
}
#staff-link:hover{
    background-color: rgba(3,164,239,.85);
}
#staff-link a{
    align-items: center;
    color: #fff;
    display: flex;
    text-decoration: none;
    padding: .75rem 1rem;
}
#staff-link a::before{
    content: "\ea77";
    font-family: 'Material Icons';
    font-size: 1rem;
    padding: 0 .5rem 0 0;
}

/*フッタ - コピーライト・eラーニングバナー・ページトップ ： ページトップ*/
#pagetop {
    background-color: rgba(0,0,0,0.00);
    align-items: center;
    display: flex;
}
#pagetop:hover {
    background-color: rgba(0,0,0,0.15);
}
#pagetop a {
    color: rgba(255,255,255,1.00);
    padding: 0 .5em;
    text-align: center;
    text-decoration: none;
}
#pagetop a:hover {
    color: rgba(255,255,255,.75);
    padding: 0 .5em;
}
#pagetop a span{
    display: block;
    font-size: .785rem;
}

/* ログイン時表示「編集」ボタンスタイル .post-edit-link
---------------------------------------------------- */
.post-edit-link { /*ログイン時の編集ボタン非表示*/
    display: none;
}

/* 改行
---------------------------------------------------- */
.sp-small {
  display: none;
}
.tb {
  display: none;
}


@media(max-width:1750px) {
  #header-contents ul.link-btn {
    margin-left: 0px;
    margin-right: 0px;
  }
  .menu-contents-area {
    width: 85%;
  }
  #menu {
    width: 65%;
  }
  #header-contents .sub-contents .time {
    margin-left: 20px;
  }
}
  @media(max-width:1600px) {
    #header-contents .sub-contents .time {
      margin-left: 0px;
      margin-right: 0px;
    }

}
@media(max-width:1500px) {

  #header-contents ul.link-btn li a {
    font-size: 13px;
  }
  #menu {
    width: 70%;
  }
  #header-contents {
    padding: 20px 10px;
  }
  #header-contents .sub-contents .time {
    font-size: 14px;
  }
  #header-contents .sub-contents {
    display: block;
  }
  #header-contents .sub-contents .time span {
    margin-bottom: 0px;
  }
  #menu {
    width: 70%;
  }
  #header-contents ul.link-btn li a {
    display: flex;
    width: auto;
    padding: 5px;
    border-radius: 5px;
  }
  #header-contents ul.link-btn li a img {
    width: 20px;
    height: 20px;
  }
  #header-contents .faq a span,
  #header-contents .inq a span  {
    margin-top: 3px;
  }
}
@media(max-width:1366px) {
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header-contents {
        flex-wrap: wrap;
    }
    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {

    }
    /*グローバルナビゲーション*/
    #menu{
        flex: 1;
    }
    #menu ul{
        justify-content: flex-start;
        width: 100%;
    }

}

@media(max-width:1260px) {
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ - 住所・電話番号*/
    #header-contents address{
    }
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn{
        display: flex;
        justify-content: flex-end;
    }
    /*グローバルナビゲーション*/
    #menu ul li a {

    }
    #header-contents ul.link-btn {
      display: block;
      display: -webkit-block;
    }
    #header-contents ul.link-btn li{
      display: block;
      margin-bottom: 5px;
    }
    #menu ul {
      margin-top: 20px;
    }

/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{}
    #sub-header .sub-header-wrap{
        width: 100%;

    }
    #container {
        margin: 1.5em 2%;
        width: 96%;
    }
    /*メインコンテンツ - メインカラム*/
    main.content {
        padding: 0 2% 2em 0;
        width: 75%;
    }
    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        width: 25%;
    }

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタ - フッタナビ*/
    #footernav .menu-footer-container{
        width: 96%;
    }
    #footernav .in {
      justify-content: flex-end;
      padding: 20px;
    }
    #footernav .menu-footer-container .menu {
      padding-left: 50px;
    }

}
@media(max-width:1100px) {
  #menu ul li a {
    font-size: 14px;
  }
  #menu ul li {
    padding: 0px 2px;
  }
}
@media(max-width:1024px) {
body {

}


/* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header {}
    #header::after {
        background-size: auto 100%;
        height: 60px;
    }


/*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / 各種コンテンツリンクボタン：.cont-btn）*/
#header-contents{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding:10px;
}
#header-contents .sub-contents .time{
   display: none;
}
    /*ヘッダコンテンツ - 住所・電話番号*/
    #header-contents address{
        display: none;
    }
    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {
        width: auto;
    }
    #site-title a{
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        text-align: left;
    }
    #site-title a span{
        display: inline-block;
    }
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents ul.cont-btn{
        display: none;
    }
    #header-contents ul.link-btn{
        display: none;
    }
    #site-title #logo-container img {
    }

    /*グローバルナビゲーション*/
    #menu {
        background-color: rgba( 247,243,229,.9);
        display: block;
        flex: none;
        height: 100vh;
        padding: 1rem;
        position: absolute;
            left: 0;
            top: -100vh;
        transition: .15s;
        width: 100%;
        z-index: 1000;
    }
    #menu div:first-of-type{
        display: block;
        margin: 5em 0 0 0;
        text-align: center;
    }
    /*グローバルナビゲーション - OPEN時*/
    #menu.toggled {
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;
            right: 0;
            top: 0;
        position: fixed;
    }
    #menu ul ,
    #menu.toggled ul {
        border-right: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
        position: relative;

        width: 100%;
    }
    #menu ul::before ,
    #menu.toggled ul::before ,
    #menu ul::after ,
    #menu.toggled ul::after {
        content: "";
        display: block;
        width: 32%;
        height: 0;
    }
    #menu ul::before ,
    #menu.toggled ul::before {
        order: 1;
    }
    #menu ul li ,
    #menu.toggled ul li {
        margin: 0 0 2rem;
        padding: 0;
        width: 28%;
        margin: 20px;
    }
    #menu.toggled ul li {
        position: relative;
        border-right: 0px solid #B6D6AA;
    }
    #menu ul li a ,
    #menu.toggled ul li a{
      height: 100%;
      background-color: #fff;
      border-radius: 15px;
      color: #000;
      font-size: 16px;
    }
    #menu ul li a:hover {
      color: #fff;
      background-color: #BADCAD;
      border-radius: 15px;
    }

    #menu.toggled ul li a::before{
        /*content: '\e5df';
        font-family: 'Material Icons';
        padding: 0 .25em 0 0;*/
    }
    #menu.toggled ul li a::after{
        display: none;
    }
    /*SP用グローバルナビハンバーガーボタン*/
    #menu .menu-toggle {
        background: none;
        border: 0;
        color: #000;
        display: block;
        height: 2.4em;
        margin: 0;
        padding: 0;
        position: absolute;
            right: .5em;
            top: calc( 100vh + .5em);
        text-align: center;
        transition: unset;
    }
    #menu .menu-toggle:hover,
    #menu .menu-toggle:focus {
        color: rgba(3,164,239,1.00);
    }
    #menu .menu-icon {
        font-size: 1em;
        height: 100%;
    }
    #menu .menu-icon::before {
        color: #88CB7F;
        content: '\e5d2';
        display: inline;
        font-family: 'Material Icons';
        font-size: 2.4em;
        line-height: 1;
    }
    #menu .sub-contents {
        margin-top: 10px!important;
      }
    #menu ul.link-btn li a,
    #menu.toggled ul.link-btn li a{
      background-color: #fff;
    }
    #menu.toggled ul.link-btn li.faq a::before,
    #menu.toggled ul.link-btn li.inq a::before {
    display: none;
  }
  #menu.toggled ul.link-btn li.faq a:hover {
     background-color: #E5F4DF;
  }
  #menu.toggled ul.link-btn li.inq,
  #menu.toggled ul.link-btn li.faq
   {
    width: 30%;
  }
  #menu.toggled ul.link-btn li.inq a {
    text-align: center;
    border-radius:12px;
    background-color: #EDA84A;
    border:1px solid #EDA84A;
    padding: 15px 30px;
color: #fff;
}
  #menu.toggled ul.link-btn li.faq a {

    text-align: center;
    border-radius:12px;
    background-color: #fff;
    border:1px solid #88CB7F;
    padding: 15px 30px;
}
#menu.toggled ul.link-btn li.inq a:hover {
   background-color: #EFBF86;
}
    /*SP用グローバルナビハンバーガーボタン - OPEN時*/
    #menu.toggled .menu-toggle {
            right: 10px;
            top: .5em;
    }
    #menu.toggled .menu-icon::before {
        color: #88CB7F;
        content: '\e5cd';
        font-family: 'Material Icons';
    }
    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents {
        align-items: center;
        display: block;
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    #menu.toggled .sp-menu-contents address ,
    #menu.toggled .sp-menu-contents ul.cont-btn{
        display: flex;

        justify-content: center;
        margin: 0 auto;
    }
    #menu ul li:nth-child(1) a:hover::before {
      content: url(../images/common/header/ico-visit-on.png);
    }
    #menu ul li:nth-child(2) a:hover::before {
      content: url(../images/common/header/ico-dialysis-on.png);
    }
    #menu ul li:nth-child(3) a:hover::before {
      content: url(../images/common/header/ico-riha-on.png);
    }
    #menu ul li:nth-child(4) a:hover::before {
      content: url(../images/common/header/ico-about-on.png);
    }
    #menu ul li:nth-child(5) a:hover::before {
      content: url(../images/common/header/ico-access-on.png);
    }
    #menu ul li:nth-child(6) a:hover::before {
      content: url(../images/common/header/ico-recruit-on.png);
    }
    #menu ul li a span:hover {
    color: #fff;
    }
    #header-contents .faq a span:hover  {
    color: #fff;
    }


    /*SP用ヘッダコンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address{
        color: #fff;
        font-size: .875rem;
    }
    #menu.toggled .sp-menu-contents address ul{
        display: block;
    }
    #menu.toggled .sp-menu-contents address ul li{
        border: none;
        display: block;
        margin: 0 0 .5rem ;
        text-align: left;
        width: 100%;
    }
    #menu.toggled .sp-menu-contents .cont-btn li {
      text-align: left;
    }

    #menu.toggled .sp-menu-contents li.facility_phone{

      position: relative;
      padding-left: 60px!important;
    }
    #menu.toggled .sp-menu-contents li.facility_phone span{
      font-size: 22px;
    }
    #menu.toggled .sp-menu-contents li.facility_phone a{
      color: #000;
    }
    #menu.toggled .sp-menu-contents li.facility_fax span{
      font-size: 22px;
    }
    #menu.toggled .sp-menu-contents li.facility_fax{
      position: relative;
      padding-left: 60px!important;
    }
    #header-contents li.facility_fax span{
      font-size: 22px;
    }
    #menu.toggled .sp-menu-contents li.facility_phone::before {
      background-image: url(../images/common/ico-tel.png);
      background-position: center center;
      background-repeat: no-repeat;
      content: "";
      position: absolute;
      left: 15px;
      top: 50%;
      width: 40px;
      height: 40px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }
    #menu.toggled .sp-menu-contents li.facility_phone a {
      background: none;
      padding-left: 0px;

    }
    #menu.toggled .sp-menu-contents li.facility_phone a:hover {
      background: none;
    }
    #menu.toggled .sp-menu-contents li.facility_phone a::before {
      display: none;
    }
    #menu.toggled .sp-menu-contents ul.cont-btn li:last-child {
      width: 100%!important;
      text-align: center;
    }

    #menu.toggled .sp-menu-contents li.facility_fax::before {
      background-image: url(../images/common/ico-fax.png);
      background-position: center center;
      background-repeat: no-repeat;
      content: "";
      position: absolute;
      left: 15px;
      top: 50%;
      width: 40px;
      height: 40px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
    }

    /*SP用ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn{
        display: flex;
        justify-content: flex-end;
    }
    #menu.toggled .sp-menu-contents .cont-btn li{
        border: none;
        display: inline-block;
        margin: 0;
        padding: .5rem;
        width: fit-content;
    }
    #menu.toggled .sp-menu-contents ul.cont-btn::before ,
    #menu.toggled .sp-menu-contents ul.cont-btn::after {
        display: none;
    }
    #menu.toggled .sp-menu-contents .cont-btn li a{
      text-align: left;
    }
    #menu.toggled .sp-menu-contents .cont-btn li a:hover{
  opacity: 0.5;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-access a::before{
        content: "\f041";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a::before{
        content: "\f003";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-phone a::before{
        content: "\f095";
        font-family: FontAwesome;
        display: inline;
        padding: 0;
    }

    /*検索フォーム*/
    #menu.toggled .sp-menu-contents .cont-btn li.search .search-form label::before {
        border-radius: 1.5rem;
        height: 3rem;
        width: 3rem;
    }
    /*テキスト入力input設定*/
    #menu.toggled .sp-menu-contents .cont-btn li.search .search-field{
        -webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
        background-color: #fff;
        background-image: none;
        border-radius: 1.5rem;
        cursor: pointer;
        height: 3rem;
        outline: none;
        padding: .25rem;
        transition: .3s;
        width: 3rem;
    }
    /*テキスト入力inputにフォーカスした時の形状*/
    #menu.toggled .sp-menu-contents .cont-btn li.search .search-field:focus {
        width: 200px;/*テキスト入力エリアが伸びる後の横幅*/
    }

    #menu.toggled .sp-menu-contents .cont-btn li.search .search-field {
        -webkit-appearance: none;
        background-color: #fff;
        background-image: none;
        border-radius: 1.5rem;
        cursor: pointer;
        outline: none;
        padding: .25rem;
        transition: .3s;
       width: 12rem;
       height: 40px;
      }


    .sp-menu-contents .time-sp {
      font-size: 16px;
      margin-top: 0px!important;
      line-height: 30px;
    }
      .sp-menu-contents .time-sp .morning::before{
        content: "";
        background-image: url(../images/common/header/time-morning.png);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        padding-left: 5px;
        display: inline-block;
      }
      .sp-menu-contents .time-sp .afternoon::before{
        content: "";
        background-image: url(../images/common/header/time-afternoon.png);
        background-repeat: no-repeat;
        width: 20px;
        height: 20px;
        padding-left: 5px;
        display: inline-block;
      }



/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{
        height: fit-content;
    }
    #sub-header .sub-header-wrap{
        padding: 2rem 0;
    }

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタ - フッタサブナビ*/
    #footer-sub-nav .menu{
        border-top: #FFF solid 1px;
        justify-content: flex-start;
        padding: 0;
    }
    #footer-sub-nav .menu li{
        border-bottom: #fff solid 1px;
        border-right: #fff solid 1px;
        padding: .8rem;
        width: 50%;
    }

    #footer-sub-nav .menu li:nth-child(2n){
        border-right: none;
    }
    #footer-sub-nav .menu li a{
        display: block;
        text-align: center;
    }
    #footer-bottom .in {
      display: -webkit-block;
      display: block;
      justify-content: flex-start;
    }
    #footer-bottom .in p{
      text-align: center;
    }
    #footernav .in {
      justify-content: space-between;
    }
    #footernav .address dd p {
      font-size: 15px;
    }
    #footernav .menu-footer-container .menu li a {
      font-size: 15px;
    }
    #footernav .menu-footer-container .menu {
      margin-left: 30px;
    }
    #footernav .menu-footer-container ul.sub-menu {
      margin-top: 10px;
    }
    #footernav .inquiry-btn a {
      font-size: 18px;
    }
    #footernav .address img {
      margin-bottom: 30px;
    }
    #footer-bottom .in {
      padding: 0px;
    }
    #copyright{
      padding: .8rem;
    }
    /*フッタ - コピーライト・eラーニングバナー・ページトップ*/
    /*フッタ - コピーライト・eラーニングバナー・ページトップ ： コピーライト*/
    #copyright,
    #copyright a {
        font-size: .85em;
    }
    #pagetop {
      display: none;
    }
}
@media screen and (max-width: 782px){
    html #wpadminbar {
        position: fixed;
    }
    /*ログイン時のアドミンバー表示調整*/
    /*
    body.logged-in #header {
            top: 46px;
    }
    */
    #wp-admin-bar-my-account{
        line-height: 80%;
    }
}

@media(min-width:769px) {}
@media(max-width:768px) {
/* 共通要素の上書き
---------------------------------------------------- */
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.25em;
    }
    h3 {
        font-size: 1.125em;
    }
    h4 {
        font-size: 1em;
    }
    h5 {
        font-size: 1em;
    }
    h6 {
        font-size: 1em;
    }
    .page .content p, .single-post .content p {
        line-height: 160%;
        font-size: 0.95rem;
    }
	/* PC/SP切り替え */
	.pc { display: none !important; }
	.sp { display: block !important; }

/* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*グローバルナビゲーション*/
    #menu ul::before ,
    #menu.toggled ul::before ,
    #menu ul::after ,
    #menu.toggled ul::after {
        display: none;
    }
    #menu ul li ,
    #menu.toggled ul li {
        margin:5px 5px 20px 5px;
    }
    #menu.toggled .sp-menu-contents .cont-btn li {
      padding: 0px;
    }
    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents address ,
    #menu.toggled .sp-menu-contents ul.cont-btn{
        width: auto;
    }
    /*検索フォーム*/
    #menu.toggled .sp-menu-contents .cont-btn{
        flex: 1;
    }
    #menu.toggled .sp-menu-contents li.facility_phone {
      letter-spacing: 5px;
    }
    #menu.toggled .sp-menu-contents li.facility_phone span {
      font-size: 16px;
    }
    #menu.toggled .sp-menu-contents li.facility_fax {
      background: none!important;

    }
    #menu.toggled .sp-menu-contents li.facility_fax span {
      font-size: 16px;
      background: none!important;
    }
    #menu.toggled .sp-menu-contents li.facility_phone a {

    }
    #menu.toggled .sp-menu-contents .cont-btn li {
      width: 100%;
    }
    #menu.toggled .sp-menu-contents address, #menu.toggled .sp-menu-contents ul.cont-btn {
      justify-content: space-between;
    }
    #menu.toggled ul.link-btn li.inq, #menu.toggled ul.link-btn li.faq {
      width: 40%;
    }
    #menu.toggled ul.link-btn {
      margin-top: 30px;
    }


/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{}
    #sub-header .sub-header-wrap{
        padding: 2rem 0;
    }
    #sub-header .sub-header-wrap .sub-header-title h2 {
      font-size: 2rem;
    }
    #container {
        margin: 1.5em 0;
        width: 100%;
    }
    .time-sp .tel-sp{
      color: #000!important;
    }
    .time-sp .tel-sp a{
      color: #000!important;
    }
    /*メインコンテンツ - メインカラム*/
    main.content {
        margin: 0 0 2em;
        padding: .5em;
        width: 100%;
    }
    /*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
    body.page-parent.page-child main.content { /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
        width: 100%;
    }
    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        padding: .5em;
        width: 100%;
    }

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    #footer{
        text-align: left;
    }
    /*フッタ - フッタナビ*/
    #footernav .menu-footer-container{
        width: 100%;
    }
    #footernav .menu-footer-container .menu{
        padding: 0;
    }
    #footernav .menu-footer-container .menu li a{
        display: block;
    }
    /*フッタ - フッタナビ ： 第一層*/
    #footernav .menu-footer-container .menu > li{
        border-top: #fff solid 1px;
        padding: .5rem 0;
        width: 100%;
    }
    #footernav .menu-footer-container .menu > li > a{
        font-weight: normal;
    }
    /*フッタ - フッタナビ ： 第二層*/
    #footernav .menu-footer-container .menu > li > ul{
        display: none;
    }
    /*フッタ - フッタナビ ： 第二層 診療科・部署*/
    #footernav .menu-footer-container .menu > li.section > ul > li{
        width: 49%;
    }
    #footernav .menu-footer-container .menu > li.section > ul::after ,
    #footernav .menu-footer-container .menu > li.section > ul::before {
        display: none;
    }
    #footernav .in {
      display: -webkit-block;
      display: block;
    }
    #footernav .in .address{
      text-align: center;
    }
    #footernav .menu-footer-container ul.menu {
      margin-left: 0%;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    }
    #footernav .menu-footer-container ul.menu li{
      border-right: #fff solid 1px;
      padding: .6rem;
      width: 50%;
      background-color: #D3E6C8;
      margin-bottom: 0px;
    }
    #footernav .menu-footer-container ul.menu li:last-child {

    }
    #footernav .menu-footer-container ul.menu li a{
      text-align: center;
      font-size: 0.95rem;
    }
    #footernav {
      padding: 50px 0px 0px 0px;
    }

    #footernav .in {
      padding: 0px;
    }
    #footernav .address img {
      margin-top: 20px;
      margin-bottom: 0px;
    }
    #footernav .link-inquiry a:link, #footernav .link-inquiry a:visited, #footernav .link-inquiry a:active {
      margin: 20px auto;
      max-width: 90%;
    }
    #footernav .inquiry-btn a {
      margin: 0 auto 50px auto;
    }
    #footernav .in .left-area,
    #footernav .in .right-area {
      width: 100%;
    }


    .tb {
      display: block;
    }
}
@media(max-width:767px) {}
@media(max-width:576px) {
  body {
      background-size: cover;
  }
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header {
        align-items: center;
        display: flex;
    }
    #sub-header .sub-header-wrap {
      margin-bottom: 15px;
    }
    #site-title #logo-container img {
      width: 85%;
    }
/*ヘッダコンテンツ（住所・電話番号：address / サイトタイトル：#sitetitle / 各種コンテンツリンクボタン：.cont-btn）*/
    /*ヘッダコンテンツ - サイトロゴ・サイトタイトル*/
    #site-title {
        width: 100%
    }
    #site-title a{
        display: block;
        width: fit-content;
    }
    #site-title a span{
        display: block;
    }
    #site-title .corporation-container {
        padding: 0;
    }
    #site-title .title-container{
        padding: 0;
    }
    /*サイトロゴ（画像）*/
    #site-title #logo-container{
    }

    /*グローバルナビゲーション*/
    #menu ul, #menu.toggled ul {
      justify-content: space-around;
    }

    #menu ul li ,
    #menu.toggled ul li {
        margin: 0;
        width: 45%;
        margin-bottom: 20px;
    }
    #menu ul li a,
    #menu.toggled ul li a {
        padding: 1rem;
    }

    /*SP用ヘッダコンテンツ*/
    #menu.toggled .sp-menu-contents address ,
    #menu.toggled .sp-menu-contents ul.cont-btn{
        width: 100%;
    }
    /*SP用ヘッダコンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address ul{
        margin: 0 0 1rem;
    }
    #menu.toggled .sp-menu-contents address ul li{
        margin: 0;
    }
    /*SP用ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn{
        justify-content: space-around;
    }
    /*検索フォーム*/
    #menu.toggled .sp-menu-contents .cont-btn li.search {
        width: 100%;
    }
    #menu ul, #menu.toggled ul {
      margin-bottom: 10px;
    }
    #menu.toggled .sp-menu-contents li.facility_phone a {
      padding: 0px;
    }
    #menu.toggled .sp-menu-contents .cont-btn li {
      margin-bottom: 20px;
    }
    #menu.toggled ul.link-btn li.faq a,#menu.toggled ul.link-btn li.inq a {
      padding: 15px 5px;
      justify-content: center;
    }
    .breadcrumbs .bradcrumbs-wrap {
      justify-content: flex-start;
    }
    #menu.toggled .sp-menu-contents .black span {
      color: #000!important;
    }
    #menu.toggled .sp-menu-contents .black {
      color: #000!important;
    }
    #menu.toggled ul.link-btn li.inq, #menu.toggled ul.link-btn li.faq {
      width: 45%;
    }

/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{
      height: 150px;
      margin: 0;
      padding: 0;
      width: 100%;
      background: url(../images/common/bg_sub-header_sp.jpg) center no-repeat;
      background-size: cover;
    }
    #sub-header .sub-header-wrap{
        padding: 1rem 0;
    }
    #sub-header .sub-header-wrap .sub-header-title h2 {
        font-size: 1.4em;
        letter-spacing: unset;
    }
    #sub-header .sub-header-wrap .sub-header-title .slag{}
    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs{
        font-size: .875em;
    }

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* サブナビゲーション */
    #footer-bottom .sp-sub-nav ul{
        flex-wrap: wrap;
    }
    #footer-bottom .sp-sub-nav ul li{
        border-bottom: #88CB7F solid 1px;
        width: 50%;
    }
    #footer-bottom .sp-sub-nav ul li:nth-child(3n){
        border-right: #88CB7F solid 1px;
    }
    #footer-bottom .sp-sub-nav ul li:nth-child(2n){
        border-right: none;
    }

    /*フッタ - コピーライト・eラーニングバナー・ページトップ*/
    #footer-bottom{
        flex-wrap: wrap;
    }
    /*フッタ - コピーライト・ページトップ ： コピーライト*/
    #copyright {
        order: 1;
    }
    /*フッタ - コピーライト・eラーニングバナー・ページトップ ： eラーニングバナー*/
    #staff-link{
        order: 3;
        width: 100%;
    }
    #staff-link a{
        justify-content: center;
    }

    /*フッタ - コピーライト・eラーニングバナー・ページトップ ： ページトップ*/
    #pagetop {
        order: 2;
    }
    .sp-small {
      display: block;
    }
    .tb {
      display: none;
    }


}
@media(max-width:350px) {
/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs{
        display: none;
    }

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタ - フッタナビ ： 第二層 診療科・部署*/
    #footernav .menu-footer-container .menu > li.section > ul{
        display: none;
    }
    /* アドレス */
    #footer .address > dl{
        text-align: left;
    }
}
