@charset "utf-8";
/* Generic Child-hanyu Style 
    -フォント読み込み
    -共通要素の上書き
    -共通要素
    -外枠 div id="wrapper" #wrapper
    -ヘッダ header id="header" #header
    -コンテナ div id="container" #container
    -サイトサブナビ nav id="site-subnav" #site-subnav （フロントページ以外）
    -フッタ footer id="footer" #footer
    -ログイン時表示「編集」ボタンスタイル .post-edit-link
        ※ログイン時のみ表示される記事の編集画面へのリンクボタン
*/
/*　Google Fonts 読込  Noto Sans Japanese（Regular 400） , Noto Serif Japanese（Regular 400） , Poppin（Regular 400）　*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Serif+JP&family=Poppins&display=swap');
/*
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Noto Serif JP', serif;
    font-family: "Poppins", sans-serif;
*/
/*
ネイビー：Primary - #223a70
rgba(34, 58, 112, 1);

水色：Secondary - #2ca9e1
rgba(44, 169, 225, 1);

赤：Accent - #D3381C
rgba(211, 56, 28, 1);

チャコール：Dark Accent - #4b312d
rgba(75, 49, 45, 1);

ライトグレー：Light accent - #eaedf7
rgba(234, 237, 247, 1);
*/

/* 共通要素の上書き
---------------------------------------------------- */
/*ダークモードの設定上書き*/
@media(prefers-color-scheme:dark) {

    body,
    #container {
        background: #fff;
    }
}

/*テキスト選択時カラー*/
::selection {
    background: rgba(44, 169, 225, .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;
    background-color: #fff;
    color: #000;
    -webkit-text-size-adjust: 100%;
}

/*ページ読み込み時のフェードアニメーション用キーフレーム*/
@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;
}

/*フォームスタイル上書き*/
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: 'Noto Sans JP', sans-serif;
    font-size: 1em;
    margin: 0;
    outline: 0;
    padding: .5em;
}

input:focus,
textarea:focus {
    background-color: #fcfcfc;
    border: rgba(145, 114, 16, .50) solid 1px;
}

input[type="submit"],
button,
.button {
    background: rgba(34, 58, 112, 1);
    ;
    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
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}

::placeholder {
    color: #ccc;
}

/*検索フォーム（サイト全体）*/
form.search-form {
    display: flex;
    /*flex-wrap: wrap;*/
}

form.search-form input {
    font-size: .875rem;
    flex: 1;
    width: calc(100% - 2rem);
}

form.search-form button {
    align-items: center;
    display: flex;
    font-size: 1rem;
    margin: 0 0 0 .5rem;
    padding: .5em;
    transition: .3s;
}

form.search-form button::before {
    background: url("../images/common/ico_search.svg") center no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    width: 1rem;
}

form.search-form button:hover,
form.search-form 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;
}



/*p（段落）要素スタイル上書き*/
.page .content p,
.single-post .content p {
    font-size: 1em;
    line-height: 160%;
    margin: 1em 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/*a（ハイパーリンク）要素スタイル上書き*/
a {
    color: rgba(34, 58, 112, 1);
    transition: .3s;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
}

a:hover {
    /* color: rgba(234, 237, 247, 1); */
}

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;
    font-family: 'Noto Sans JP', sans-serif;
}

.entry-content ol,
.widget-container ol,
.comment-body ol {
    margin-left: 1em;
    font-family: 'Noto Sans JP', sans-serif;
}

.entry-content ul li,
.widget-container ul li,
.comment-body ul li {
    list-style-type: initial;
    font-family: 'Noto Sans JP', sans-serif;
}

/*エントリーメタデータスタイル上書き*/
.entry-meta,
.entry-meta a,
.entry-footer,
.entry-footer a,
.comment-meta,
.comment-meta a,
.comment-author,
.comment-author a {
    font-family: 'Noto Sans JP', 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: transparent;
    margin: 0 0 -4rem;
    position: relative;
    width: 100%;
    /*ヘッダ固定の指定を外す際はposition:relativeに変更し、header.php内の「ヘッダーの高さ分だけコンテンツを下げる」をコメントアウトし、
    ログイン時のアドミンバー表示調整（body.logged-in #header）もコメントアウトする
    （@media screen and (max-width: 782px)にもログイン時のアドミンバー表示調整の記述有）
        left: 0;
        top: 0;
    z-index: 9999;
    */
}

/*ログイン時のアドミンバー表示調整*/
/*
body.logged-in #header {
        top: 32px;
}
*/
#header:after {
    display: none;
}

#header .header-wrap {
    background-color: #fff;
    position: relative;
    width: 100%;
}

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

/*ヘッダコンテンツ（サイトタイトル：#sitetitle / 住所：address / 各種コンテンツリンクボタン：.cont-btn）*/
#header-contents {
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-bottom: solid 1px #ccc;
	background-color: #161c34;
}

/*ヘッダコンテンツ - サイトタイトル*/
#header-contents #site-title {
    margin: 0;
    padding: 0 .875em;
}

#header-contents #site-title h1 a img {
    height: auto;
    margin: 0;
    max-height: 50px;
    width: auto;
}

/*ヘッダコンテンツ - 住所*/
#header-contents address {
    font-size: .875rem;
    padding: 0 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

#header-contents address p {
    margin: 0;
	color: #fff;
	font-size: 1.0rem;
}

#header-contents address p span {
    display: block;
}

#header-contents address .facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}

#header-contents address .facility_phone {
    font-weight: 600;
    font-size: 20px;
}

#header-contents address .facility_phone::before {
    content: "\f095";
    font-family: FontAwesome;
    background-size: contain;
    display: inline;
    padding: 0 .25em 0 0;
}


/*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
#header-contents .cont-btn {
    align-items: center;
    display: flex;
    flex: 1;
    justify-content: flex-end;
}

#header-contents .cont-btn li {
    padding: .875rem .5em;
    border-left: solid 1px #ccc;
	height: 95px;
}

#header-contents .cont-btn li address {
    padding: .1em .5em;
}

#header-contents .cont-btn li.tel-num a {
	font-size: 1.4rem;
	color: #fff;
	
}

#header-contents .cont-btn li.tel-num span {
	font-size: 1.0rem;
	color: #fff;
}

/*Gtranslate*/
#header-contents .cont-btn li .translate {
    /* border: #ddd solid 1px; */
    padding: .96em .25rem;
}

#header-contents .cont-btn li .translate a {
    align-items: center;
    display: flex;
    justify-content: flex-start;
}

#header-contents .cont-btn li .translate a,
#header-contents .cont-btn li .translate a:hover {
    color: #333;
}

#header-contents .cont-btn li .translate a img {
    margin: 0 .25rem;
}
/* translateボタン本体（Japanese表示）だけ白 */
#header-contents .cont-btn li .translate .goog-te-gadget-simple span {
    color: #fff !important;
}
.gt_white_content.notranslate a span {
	color: #000!important;
}

/* POPUP内の言語一覧は黒 */
.goog-te-menu-frame,
.goog-te-menu-frame body,
.goog-te-menu-frame body span,
.goog-te-menu-frame body a {
    color: #000 !important;
}iframe.goog-te-menu-frame {
    color: #000 !important;
}

#header-contents .cont-btn li .translate a span {
    margin: 0 .25rem;
    text-transform: uppercase;
	color: #fff;
	
}
#header-contents .cont-btn li.search {
	  height: 95px;
  display: flex;
  align-items: center; /* 縦中央 */
}


/*SNSボタン*/
#header-contents .cont-btn li.sns a img {
    height: 1.75rem;
    opacity: 1;
    transition: .3s;
}

#header-contents .cont-btn li.sns a:hover img {
    opacity: .5;
}

/*お問い合わせボタン*/
#header-contents .cont-btn li.btn a {
    align-items: center;
    background-color: rgba(145, 114, 16, 0);
   
    font-size: .875rem;
    justify-content: space-around;
    /* padding: .5rem 1rem; */
    text-decoration: none;
    transition: .3s;
}
#header-contents .cont-btn li span {
	color: #fff;
}
#header-contents .cont-btn li.link-blog {
	width: 120px;
	text-align: center;
}
#header-contents .cont-btn li.link-inquiry {
	width: 120px;
	text-align: center;
}
#header-contents .cont-btn li.btn:hover {
    background-color: rgba(234, 237, 247, .75);
}

#header-contents .cont-btn li.btn.link-blog a::before {
    background-image: url(../images/common/ico-blog.png);
    content: "";
    display: block;
    margin-right: 8px;
    width: 20px;
    height: 18px;
    background-repeat: no-repeat;
margin: 0 auto 7px auto;
}
#header-contents .cont-btn li.btn.link-inquiry a::before {
    background-image: url(../images/common/ico-inquiry.png);
    content: "";
    display: block;
    margin-right: 8px;
    width: 20px;
    height: 18px;
    background-repeat: no-repeat;
	  margin: 0 auto 7px auto;
}



/*検索窓*/
#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: 8rem;
	    border-radius: 0px;
}

#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;
	border: 1px solid #bbb;
}

#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
}

/*SP用ヘッダコンテンツ*/
#sp-header-contents {
    display: none;
}

/*グローバルナビゲーション*/
#menu {
    margin: 0;
    width: 100%;
}

#menu div:first-of-type {
    float: none;
    width: 100%;
}

#menu .menu-header-container {
    display: flex;
        justify-content: flex-end;
   
	
}

#menu ul {
align-items: center;
    display: flex;
    font-size: inherit;
    justify-content: space-between;
    margin: 0;
    padding: 1.375em 0;
    background-color: #324d6d;
    width: 870px;
    position: relative; /* ← 必須 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 0.8em 0;
    width: 870px;
    /* background: transparent; */ /* ← 消す */

	
}
#menu ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border-radius: 3px;
    background-color:#324d6d;
    transform: skewX(-15deg);
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 50px; /* ← 左の斜め部分の幅 */
    height: 100%;
   
}

#menu ul li {
    align-items: center;
    font-family: 'Noto Serif JP', serif;
    display: flex;
    padding: .5em 1em;
}

#menu ul li a {
    align-items: center;
    display: flex;
    font-size: 1.14em;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: inherit;
    text-decoration: none;
    width: 100%;
	color: #fff;
}

#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.single-section #menu ul li.menu-item-object-section a,
/*診療科・部門（カスタム投稿タイプ） current表示*/
body.tax-section-category #menu ul li.menu-item-object-section a,
body.single-recruit #menu ul li.menu-item-object-recruit a

/*採用情報（カスタム投稿タイプ） current表示*/
    {
    color:#fff;

}

#menu ul li a::after {
    background: rgba(145, 114, 16, 0.00);
    content: '';
    height: 2px;
    position: absolute;
    bottom: -.5rem;
    left: 0;
    transition: 0.3s;
    width: 100%;
}

#menu ul li a:hover::after,
#menu ul li.current-menu-item a::after,
/*メニューページ current表示*/
#menu ul li.current-page-ancestor a::after,
/*メニューの子ページ current表示*/
body.single-section #menu ul li.menu-item-object-section a::after,
/*診療科・部門（カスタム投稿タイプ） current表示*/
body.tax-section-category #menu ul li.menu-item-object-section a::after,
body.single-recruit #menu ul li.menu-item-object-recruit a::after

/*採用情報（カスタム投稿タイプ） current表示*/
    {
    background: #fff;
    bottom: -0.8rem;
}

/*SP用グローバルナビハンバーガーボタン*/
#menu .menu-toggle {
    display: none;
}

/*ナビゲーション内コンテンツ*/
#menu .sp-menu-contents {
    display: none;
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header {
    background: url("../images/common/bg_sub-header.png") center no-repeat;
    background-size: cover;
    height: calc(140px + 4rem);
    margin: 0;
    padding: 0;
    width: 100%;
}

#sub-header .sub-header-wrap {
    align-items: center;
    display: flex;
    flex-direction: initial;
    height: 100%;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 0 0 0rem;
    width: 1240px;
}

#sub-header .sub-header-wrap .sub-header-title {
    height: fit-content;
    /* 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); */
    width: 100%;
}

#sub-header .sub-header-wrap .sub-header-title h2 {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-size: 2em;
    font-weight: normal;
    /* letter-spacing: .25rem; */
	        text-shadow: 3px 3px 5px #aaaaaa, -3px -3px 5px #aaaaaa, 3px -3px 5px #aaaaaa, -3px 3px 5px #aaaaaa;
}

#sub-header .sub-header-wrap .sub-header-title .slag {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: .875em;
	display:none;
}

/*メインコンテンツ - パンくずナビ*/
.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: transparent;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 2em auto;
    width: 1240px;
}

/*メインコンテンツ - メインカラム*/
main.content {
    float: none;
    margin: 0;
    padding: 0 0 0 3em;
    width: 75%;
}

/*メインコンテンツ - メインカラム - 固定ページ最上の親ページ　メインカラム100%*/
body.page-parent main.content {
    /*親（body.page-parent）の場合メインカラム100%*/
    padding: 0;
    width: 100%;
}

/*メインコンテンツ - メインカラム - カスタム投稿タイプ（診療科・部門 / 採用情報）メインカラム100%*/
body.post-type-archive-section main.content,
body.tax-section-category main.content,
body.post-type-archive-recruit main.content {
    padding: 0;
    width: 100%;
}

body.page-parent.page-child main.content {
    /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
    padding: 0 0 0 3em;
    width: 75%;
}

/*メインコンテンツ - サイドバー*/
aside#sidebar {
    float: none;
}

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

/*メインコンテンツ - メインカラム - カスタム投稿タイプ（診療科・部門 / 採用情報）サイドバー非表示*/
body.post-type-archive-section aside#sidebar,
body.tax-section-category aside#sidebar,
body.post-type-archive-recruit aside#sidebar {
    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-container ul {
    margin: 0;
}

aside#sidebar .widget-container ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

aside#sidebar .child-page-box>ul {
    border-top: #ddd solid 1px;
}

aside#sidebar .child-page-box ul li a,
aside#sidebar .widget-container ul li a {
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
}

aside#sidebar .child-page-box ul li a:hover,
aside#sidebar .widget-container ul li a:hover {
    background-color: #f7f7f7;
    color: #666;
}

/*該当ページ滞在時*/
aside#sidebar .child-page-box ul li.current_page_item>a,
aside#sidebar .child-page-box ul li.current>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 .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;
}

/*ウィジェットリスト*/
aside#sidebar .widget-container ul {
    margin: 0;
    padding: 0;
}

aside#sidebar .widget-container ul li {
    border-bottom: #ddd solid 1px;
    list-style: none;
    line-height: normal;
    margin: 0;
}

aside#sidebar .widget-container ul li a {
    align-items: center;
    background-color: #fff;
    color: #333;
    display: flex;
    padding: 1rem 0;
    text-decoration: none;
}

aside#sidebar .widget-container ul li a:hover {
    background-color: #F7F7F7;
    color: #666;
}

aside#sidebar .widget-container ul li a::before {
    content: "\e5cc";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

aside#sidebar .widget-container ul li ul li a {
    padding: .75rem 0 .75rem 1rem;
}

aside#sidebar .widget-container ul li ul li a::before {
    content: "\eac9";
    font-family: 'Material Icons';
    padding: 0 .5rem 0 0;
}

/*該当ページ滞在時*/
aside#sidebar .widget-container ul li.current>a,
aside#sidebar .widget-container ul li.current_page_item>a,
aside#sidebar .widget-container ul li>a[aria-current] {
    background-color: #f7f7f7;
    color: #666;
}

/* サイトサブナビ nav id="site-subnav" #site-subnav （フロントページ以外）
---------------------------------------------------- */
#site-subnav {
    background-color: #fff;
    border-bottom: #efefef solid 1px;
    border-top: #efefef solid 1px;
    margin: 0;
    padding: 0;
}

#site-subnav .section-wrap {
    margin: 0 auto;
    width: 1240px;
}

#site-subnav ul {
    display: flex;
    height: 100%;
    justify-content: space-between;
    padding: 0;
}

#site-subnav ul li {
    align-items: center;
    border-left: #efefef solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: .5rem;
    position: relative;
    transition: .3s;
    width: calc(100% / 6);
}

#site-subnav ul li:hover {
    opacity: .7;
}

#site-subnav ul li a {
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: .875rem;
    opacity: 1;
    text-decoration: none;
}

#site-subnav ul li a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

#site-subnav ul li:last-child {
    border-right: #ddd solid 1px;
}

#site-subnav ul li::before {
    content: "";
    display: block;
    height: 30px;
    width: 30px;
}

#site-subnav ul li.first::before {
    background: url("../images/common/ico_first.svg") center no-repeat;
    background-size: contain;
}

#site-subnav ul li.repeat::before {
    background: url("../images/common/ico_repeat.svg") center no-repeat;
    background-size: contain;
}

#site-subnav ul li.schedule::before {
    background: url("../images/common/ico_schedule.svg") center no-repeat;
    background-size: contain;
}

#site-subnav ul li.admission::before {
    background: url("../images/common/ico_admission.svg") center no-repeat;
    background-size: contain;
}

#site-subnav ul li.medicalcheckup::before {
    background: url("../images/common/ico_medicalcheckup.svg") center no-repeat;
    background-size: contain;
}

#site-subnav ul li.medical::before {
    background: url("../images/common/ico_formedical.svg") center no-repeat;
    background-size: contain;
}

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
#footer {
    background-color: #161c34;
    font-size: .875rem;
    margin: 0;
    padding: 0;
}

/*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
#footer #footer-main {
    /* border-left: #ddd solid 1px;
    border-right: #ddd solid 1px; */
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    width: 100%;
	max-width: 1920px;
}

#footer-main>div {
    padding: 1rem;
}

/*フッタメイン - aside（施設名・住所・電話番号・SNSリンク群・フッターサブナビ）*/
#footer-main .bl-aside {
    /* border-right: #ddd solid 1px; */
    /* width: 25%; */
	width: 30%;
}
#footer-main .bl-main {
	width: 70%;
}
ul#menu-footer-navi {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
	    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
ul#menu-footer-navi a{
	text-decoration: none;
	font-size: 1.05rem;
	    margin: 15px;
}


/* 施設名・住所・電話番号 */
#footer-main .bl-aside .address {
    margin: 0;
    padding: 0;
    width: 100%;
	color: #fff;
}

.bl-aside .address>dl {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
}

.bl-aside .address>dl>dt {
    padding: 0 0 .5em;
}

.bl-aside .address>dl>dd {
    font-weight: normal;
    margin: 0;
}

.bl-aside .address>dl>dd span {
    display: inline;
}

.bl-aside .address>dl>dd span.facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}

.bl-aside .address>dl>dd span.facility_phone {
    display: block;
}

.bl-aside .address>dl>dd span.facility_phone::before {
    content: "TEL:";
    display: inline;
    padding: 0 .25em 0 0;
}
.bl-main .footer-nav a{
	color: #fff;
}
/*フッタ - アクセス*/
section#access {
    padding: 0;
    position: relative;
}

#access .section-wrap {
    margin: 0 auto;
    padding: 0;
    position: relative;
    width: 100%;
}

#access .section-wrap .contents {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}

#access p.btn.more-link a {
    color: #fff;
    background-color: #161c34;
    border: #fff solid 1px;
    display: flex;
    width:300px;
    height: auto;
    padding: .75rem 2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.10em;
    line-height: normal;
    text-decoration: none;
    align-items: center;
}



#access p.btn.more-link a:hover {
    background-color: #fff;
    color: #161c34;
}

/*フッタ - 施設情報*/
#access .section-wrap .contents .addresses {
    align-items: center;
    color: #fff;
    display: flex;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    justify-content: flex-end;
    padding: 1rem;
    width: 50%;
}

#access .addresses dl {
    line-height: 1em;
    text-align: right;
}

#access .addresses dl dt,
#access .addresses dl dd:not(:last-child) {
    margin: 0 0 1em;
}

/*フッタ - 施設情報 - 施設名（サイト名）*/
#access .addresses dl dt.name {
    font-weight: normal;
}

#access .addresses dl dt.name span {
    vertical-align: middle;
}

#access .addresses dl dt.name .site_preview_name {
    font-size: 1.5em;
}

/*フッタ - 施設情報 - 住所*/
#access .addresses dl dd.address .facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 .25em 0 0;
}

/*フッタ - 施設情報 - 電話番号*/
#access .addresses dl dd.phone .facility_phone::before {
    content: "TEL:";
    display: inline;
    padding: 0 .25em 0 0;
}

/*フッタ - Google Map*/
#access .section-wrap .contents .map {
    height: 300px;
    width: 50%;
}

/* ウィジェット（バナーエリア） #bnr-widget
---------------------------------------------------- */
.widget-area#bnr-widget {
    background-color: #EEEEEE;
    margin: 0 !important;
    padding: 0;
}

.widget-area#bnr-widget .section-wrap {
    width: 90%;
    margin: 0 auto;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick {
    padding: 2rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    /* max-width: 1520px; */
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slick-track {
    align-items: center;
    display: flex;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick li {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 .5em;
    padding: 0;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick li h2 {
    display: none;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick li a img {
    width: 280px;
}

/*左右送り（バナー枚数超過の時のみ表示）*/
.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow {
    height: 2rem;
    margin: 0;
    text-align: center;
    width: 2rem;
    z-index: 250;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow:hover {
    cursor: pointer;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow::before {
    color: rgba(255, 255, 255, 1);
    content: "";
    display: inline;
    font-family: 'Material Icons';
    font-size: 1em;
    line-height: 1;
    position: absolute;
    top: 25%;
    right: 25%;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.slick-disabled::before {
    color: rgba(0, 0, 0, .50);
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.next-arrow {
    background-color: #ccc;
    position: absolute;
    top: calc(50% - 1rem);
    right: 0;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.next-arrow::before {
    content: '\e5e1';
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.prev-arrow {
    background-color: #ccc;
    position: absolute;
    top: calc(50% - 1rem);
    left: 0;
}

.widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.prev-arrow::before {
    content: '\e2ea';
}

/* フッターサブナビ */
.bl-aside .footer-sub-nav ul li {
    /* border-bottom: #ddd solid 1px; */
    padding: .5rem 0;
}

.bl-aside .footer-sub-nav ul li a {
    color: #000;
    text-decoration: none;
}


/*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/
/* フッターサブナビ */
#footer-sub {
    position: relative;
    display: flex;
    background-color:#324d6d;
}

.footer-sub-nav {
  
}

.footer-sub-nav ul {
    display: flex;
    flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-sub-nav ul li {
    border-bottom: none;
    padding: 0;
    /* width: 50%; */
}

.footer-sub-nav ul li:last-child {
    border-right: #ddd solid 0px;
}

.footer-sub-nav ul li a {
    display: block;
    padding: 0 1em;
    order: 1;
    color: #fff;
    text-decoration: none;
	font-size: 1.05rem;
}

#footer-sub>p {
    margin: 0;
}

/* コピーライト */
#copyright,
#copyright a {
    color: #fff;
    flex: 1;
    font-size: .875em;
    padding: .875rem;
    text-align: left;
    width: calc(100% - 40px);
}

/* 職員専用リンク */
/* #staffonly {}

#staffonly a {
    align-items: center;
    background-color: rgba(56, 101, 128, .50);
    color: #fff;
    display: flex;
    line-height: 100%;
    padding: .75rem;
    text-decoration: none;
}

#staffonly a::before {
    background: url("../images/common/ico_elearning.svg") center no-repeat;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 1.25rem;
    padding: 0 .5rem 0 0;
    width: 1.25rem;
}

#staffonly a:hover {
    background-color: rgba(56, 101, 128, 1.00);
} */

/* ページトップ */
#pagetop {
    align-items: center;
    display: flex;
    order: 3;
    position: absolute;
    bottom: 0;
    right: 0;
}

#pagetop a {
    background-color: rgba(0, 0, 0, 0.15);
    color: rgba(255, 255, 255, 1.00);
    padding: .75rem 1rem;
}

#pagetop a:hover {
    background-color: rgba(255, 255, 255, .15);
}

/* ページトップ */
span.web-yoyaku-red{
    color: red;
}

/* ログイン時表示「編集」ボタンスタイル .post-edit-link
---------------------------------------------------- */
.post-edit-link {
    /*ログイン時の編集ボタン非表示*/
    display: none;
}
@media(max-width:1550px) {
#header-contents .cont-btn li.tel-num a {	
	    font-size: 1.2rem;
}
}

@media(max-width:1366px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*グローバルナビゲーション*/
    #menu ul {
        width: 100%;
		padding: 0.8rem;
    }
	#header-contents .cont-btn li.search form input {
		width: 6rem;
	}
	#header-contents #site-title h1 a img {
		width: 90%;
	}
	#header-contents address p {
		font-size: 0.9rem;
	}
	#header-contents .cont-btn li.link-blog {
		width: 100px;
	}
	#header-contents .cont-btn li.link-inquiry {
		width: 110px;
	}
	#header-contents address {
		padding: 0 1rem 0 0;
	}#header-contents .cont-btn li {
		padding: .875rem .2em;
	}
	#header-contents .cont-btn li.tel-num a {
		        font-size: 1.0rem;
	}
	#header-contents .cont-btn li.tel-num {
		        padding-top: 20px;
	}
}

@media(max-width:1260px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    /*お問い合わせボタン*/
    #header-contents .cont-btn li {
        display: block;
        padding: .875rem .6em;
  
    }
	#header-contents address {
		padding: 0;	}
	#header-contents #site-title h1 a img {
		width: 90%;
	}
    #header-contents .cont-btn li.btn a::before {
        margin: 0;
    }
	#header-contents .cont-btn li.btn  {
		padding: .875rem .0em;
	}
    #header-contents .cont-btn li.btn a span {
        font-size: 0.7rem;
    }
	#header-contents address p span {
		display: none;
	}
	#header-contents .cont-btn li.tel-num span {
		font-size: 0.8rem;
	}
	#header-contents .cont-btn li.tel-num a {
		font-size: 1.1rem;
	}
	#header-contents .cont-btn li.link-blog,
	#header-contents .cont-btn li.link-inquiry
	{
		width: 80px;
	}
	#header-contents .cont-btn li.search form input {
		    width: 6rem;
	}
    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {}

    #sub-header .sub-header-wrap {
        width: 90%;
    }

    #menu ul li {
        padding: .5em;
    }
    
    #menu ul li a {
        font-size: 1.125em;
    }

    #container {
        margin: 1.5em 2%;
        width: 96%;
    }

    /*メインコンテンツ - メインカラム*/
    main.content {
        padding: 0 0 0 2%;
        width: 75%;
    }

    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        width: 25%;
    }

    /* サイトサブナビ nav id="site-subnav" #site-subnav （フロントページ以外）
---------------------------------------------------- */
    #site-subnav .section-wrap {
        width: 100%;
    }

    /* ウィジェット（バナーエリア） #bnr-widget
---------------------------------------------------- */
    .widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.next-arrow {
        right: -5%;
    }

    .widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.prev-arrow {
        left: -5%;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
    #footer #footer-main {
        border: none;
    }
}

@media(max-width:1024px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header {
        box-shadow: 0 0 5px 3px rgba(0, 0, 0, .05);
        margin: 0;
    }

    #header::after {
        background-size: auto 100%;
        height: 62px;
    }

    /*ヘッダコンテンツ（サイトタイトル：#sitetitle / 住所：address / 各種コンテンツリンクボタン：.cont-btn）*/
    /*ヘッダコンテンツ - サイトタイトル*/

    #header-contents {
        padding: .6em;
    }

    #header-contents #site-title h1 a img {
        max-height: 40px;
    }

    /*ヘッダコンテンツ - 住所*/
    #header-contents address {
        display: none;
    }

    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn {
        display: none;
    }

    /*SP用ヘッダコンテンツ - （Gtranslate・検索） */
    #sp-header-contents {
        display: none;
    }

    #sp-header-contents>div {
        /* margin: 0 1rem; */
    }

    /*Gtranslate*/
    #sp-header-contents .translate {
        background-color: #fff;
        border: #fff solid 1px;
        padding: .25rem;
        width: fit-content;
    }

    #sp-header-contents .translate a {
        align-items: center;
        display: flex;
        justify-content: flex-start;
    }

    #sp-header-contents .translate a,
    #sp-header-contents .translate a:hover {
        color: #333;
    }

    #sp-header-contents .translate a img {
        margin: 0 .25rem;
        display: none;
    }

    #sp-header-contents .translate a span {
        margin: 0 .25rem;
        text-transform: uppercase;
    }

    /*検索*/
    #sp-header-contents .search {
        flex: 1;
    }

    /*グローバルナビゲーション*/

    #menu {
        background: rgba(255, 255, 255, 1) url("../images/common/bg_sp-menu_re.png") center no-repeat;
        background-size: cover;
        display: block;
        flex: none;
        height: 100vh;
        position: absolute;
        left: 0;
        top: -100vh;
        transition: .15s;
        width: 100%;
        z-index: 1000;
    }

    #menu.toggled a,
    #menu.toggled ul.sub-menu a,
    #menu.toggled ul.children a {
        
		line-height: 10px;
		width: auto;
    }
	.tel-num a{
		width: auto;
	}
	

    #menu div:first-of-type {
        display: block;
        margin: 3.8em 0 0 0;
    }
	.tel-num a {
		padding: 0px 0 5px;
		padding-bottom: 0px;
	}

    #menu .menu-header-container {
        display: flex;
        justify-content: center;
        background-color: transparent;
    }

    #menu .menu-header-container::before,
    #menu .menu-header-container::after {
        display: none;
    }

    /*グローバルナビゲーション - OPEN時*/
    #menu.toggled {
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;
        position: fixed;
        right: 0;
        top: 0;
    }
	#menu ul li a {
		text-align: center;
	}
	#menu ul {
		
	}
    /*ログイン時のアドミンバー表示調整*/
    body.logged-in #header #menu.toggled {
        top: 32px;
    }

    /*ナビゲーション内コンテンツ*/
    #menu.toggled .sp-menu-contents {
        align-items: flex-start;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
    }
	#menu ul::before {
	display: none;	
	}
    /*ナビゲーション内コンテンツ - サイトタイトル*/
    #menu.toggled .sp-menu-contents .site-title {
        margin: 0;
        text-align: center;
    }

    #menu.toggled .sp-menu-contents address,
    #menu.toggled .sp-menu-contents ul.cont-btn {
        width: 100%;
		margin: 0.7rem;
    }

    /*ナビゲーション内コンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: .875rem;
        text-align: center;
		color: #fff;
    }

    #menu.toggled .sp-menu-contents address p {
        margin: .5rem;
    }

    #menu.toggled .sp-menu-contents address .facility_zip::before {
        content: "〒";
        display: inline;
        padding: 0 .5em 0 0;
    }

    #menu.toggled .sp-menu-contents address .facility_phone a {
        color: #000;
        font-size: 14px;
        text-align: center;
        display: block;
        margin: 0 auto;
        padding: .5em;
    }

    #menu.toggled .sp-menu-contents address .facility_phone a::before {
        content: "TEL:";
        display: inline;
        padding: 0 .5em 0 0;
    }


    /*ナビゲーション内コンテンツ - 各種コンテンツリンクボタン*/
    #menu.toggled .sp-menu-contents .cont-btn {
        align-items: center;
        background-color: transparent;
        display: flex;
        flex: 1;
        flex-wrap: wrap;
        justify-content: center;
    }

    #menu.toggled .sp-menu-contents .cont-btn li {
        display: block;
        padding: .5em;
    }

    #menu.toggled .sp-menu-contents .cont-btn li a::after {
        display: none;
    }

    /*SNSボタン*/
    #menu.toggled .sp-menu-contents .cont-btn li.sns a img {
        height: 1.75rem;
        opacity: 1;
        transition: .3s;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.sns a:hover img {
        opacity: .5;
    }

    /*お問い合わせボタン*/
    #menu.toggled .sp-menu-contents .cont-btn li.sns.link-instagram {
        width: 100%;
        justify-content: center;
        display: flex;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn {
        width: 40%;
		        height: 60px;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn a {
        align-items: center;
        background-color: rgba(34, 58, 112, 1);
        border: 1px solid #fff;
        color: #fff;
        display: flex;
        font-size: .875rem;
        justify-content: center;
        margin: 0 auto;
               padding: 12px;
        text-decoration: none;
        transition: .3s;
		display: flex;
        align-items: center;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn a:hover {
        background-color: rgba(234, 237, 247, .75);
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn a::before {
        background-size: contain;
        font-family: FontAwesome;
        display: block;
        height: 1rem;
        margin: 0 .3em 0 0;
        width: 1rem;
        text-align: center;
		margin-top: 4px;
    }

    /* #menu.toggled .sp-menu-contents .cont-btn li.btn.link-inquiry a::before {
        background: url("../images/common/ico_inquiry.svg") center no-repeat;
    } */

    #menu.toggled .sp-menu-contents .cont-btn li.btn.link-blog a::before {
        background-image: url(../images/common/ico-blog.png);
		content: "";
		display: block;
		margin-right: 8px;
		width: 20px;
		height: 18px;
		background-repeat: no-repeat;
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn.link-access a::before {
        content: "\f041";
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn.link-news a::before {
        content: "\f129";
    }

    #menu.toggled .sp-menu-contents .cont-btn li.btn.link-inquiry a::before {
        content: "\f0e0";
    }

    /*グローバルナビゲーションメニュー*/
    #menu ul#menu-header,
    #menu.toggled ul#menu-header {
        background-color: transparent;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        padding: 0;
        position: relative;
        left: 0;
        top: 0;
    }

    #menu ul#menu-header li,
    #menu.toggled ul#menu-header li {
        margin: 0.7rem;
        padding: 0;
        width: 30%
    }

    #menu.toggled ul#menu-header li {
        position: relative;
    }

    #menu ul#menu-header li a,
    #menu.toggled ul#menu-header li a {
        color: rgba(0, 0, 0, 1);
        display: block;
        font-size: 1rem;
        height: 100%;
        line-height: auto;
        margin: 0;
        padding: 0;
        text-align: center;
        width: 100%;
		background-color: #fff;
        padding: 15px;
    }

    #menu.toggled ul#menu-header li a:hover,
    #menu.toggled ul#menu-header li a:focus,
    #menu.toggled ul#menu-header li.current-menu-item a,
    /*メニューページ current表示*/
    #menu.toggled ul#menu-header li.current-page-ancestor a,
    /*メニューの子ページ current表示*/
    body.facility-template #menu.toggled ul#menu-header li.menu-item-object-facility a

    /*施設情報（カスタム投稿タイプ） current表示*/
        {
        color: rgba(34, 58, 112, 1);
        ;
    }

    #menu.toggled ul#menu-header li a::before {
        content: '\e5df';
        font-family: 'Material Icons';
        padding: 0 .25em 0 0;
    }

    #menu.toggled ul#menu-header li a::after {
        display: none;
    }

    /*SP用グローバルナビハンバーガーボタン*/
    #menu .menu-toggle {
        background: none;
        border: 0;
        color: #fff;
        display: block;
        height: 2.4em;
        margin: 0;
        padding: 0;
        position: absolute;
        right: .5em;
        top: calc(100vh + .5em);
        text-align: center;
        transition: unset;
    }



    #menu .menu-icon {
        font-size: 1em;
        height: 100%;
    }

    #menu .menu-icon::before {
        content: '\e5d2';
        display: inline;
        font-family: 'Material Icons';
        font-size: 2.4em;
        line-height: 1;
		color: #fff!important;
    }

    /*SP用グローバルナビハンバーガーボタン - OPEN時*/
    #menu.toggled .menu-toggle {
        right: 10px;
        top: .5em;
    }

    #menu.toggled .menu-icon::before {
        color: #666;
        content: '\e5cd';
        font-family: 'Material Icons';
    }

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

    #sub-header .sub-header-wrap {
        padding: 2rem 0;
    }

    /* サイトサブナビ nav id="site-subnav" #site-subnav （フロントページ以外）
---------------------------------------------------- */
    #site-subnav {
        border-bottom: none;
    }

    #site-subnav ul {
        flex-wrap: wrap;
    }

    #site-subnav ul li {
        border-bottom: #efefef solid 1px;
        flex-direction: row;
        justify-content: center;
        width: calc(100% / 3);
    }

    #site-subnav ul li:last-child {
        border-right: none;
    }

    #site-subnav ul li::before {
        margin: 0 .5rem 0 0;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    #footer {
        text-align: center;
    }

    /*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
    #footer #footer-main {
        margin: 0;
        width: 100%;
    }

    /*フッタメイン - aside（施設名・住所・電話番号・SNSリンク群・フッターサブナビ）*/
    #footer-main .bl-aside {
        border-right: none;
        padding: 2rem 0;
        width: 100%;
    }

    /*フッタ - Google Map*/
    #access .section-wrap .contents .map {
        height: 300px;
        width: 100%;
    }
	#footer #footer-main {
		display: block;
	}
	#footer-main .bl-main {
		width: 100%;
	}
	ul#menu-footer-navi {
		display: none;
		        border-top: 1px solid #fff;
	}
	#footer-main>div {
		padding: 0rem;
	}
    /* SNSリンク群 */
    /* .bl-aside .address > dl > dd.sns ul {
        justify-content: center;
    } */

    .bl-aside .address>dl>dd p {
        display: flex;
        justify-content: center;
    }

    /*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/
    /* フッターサブナビ */
    #footer-sub {
        position: relative;
        display: block;
    }

    .footer-sub-nav {
        position: relative;
        right: 0;
    }

    .footer-sub-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0;
		border-top: #fff solid 1px;
    }

    .footer-sub-nav ul li {
        border-bottom: none;

        border-right: #ddd solid 1px;
        border-bottom: #ddd solid 1px;
        padding: 0;
        width: 50%;
    }

    .footer-sub-nav ul li:nth-child(1n) {
        border-right: #ddd solid 1px;
    }

    .footer-sub-nav ul li:nth-child(2n) {
        border-right: #ddd solid 0px;
    }

    .footer-sub-nav ul li a {
        display: block;
        padding: 1rem .5rem;
    }

    #footer-sub>p {
        margin: 0;
    }

    /* コピーライト */
    #copyright,
    #copyright a {
        color: #fff;
        flex: 1;
        font-size: .875em;
        padding: .75rem;
        text-align: left;
        width: calc(100% - 40px);
    }

    /* ページトップ */
    #pagetop {
        align-items: center;
        display: flex;
        order: 3;
        position: absolute;
        bottom: 0;
        right: 0;
    }

    #pagetop a {
        background-color: rgba(0, 0, 0, 0.15);
        color: rgba(255, 255, 255, 1.00);
        padding: .6rem 1rem;
    }

    #pagetop a:hover {
        background-color: rgba(255, 255, 255, .15);
    }
}

@media screen and (max-width: 782px) {
    html #wpadminbar {
        position: fixed;
    }

    /*ログイン時のアドミンバー表示調整*/
    /*
    body.logged-in #header {
            top: 46px;
    }
    #wp-admin-bar-my-account{
        line-height: 80%;
    }
    */
    body.logged-in #header #menu.toggled {
        top: 46px;
    }
}

@media(min-width:769px) {}

@media(max-width:768px) {

    /* 共通要素の上書き
---------------------------------------------------- */
    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 2em;
    }

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

    /* 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;
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {}

    #sub-header .sub-header-wrap {
        padding: 2rem 0;
    }

    #container {
        margin: 1.5em 0;
        width: 100%;
    }

    /*メインコンテンツ - メインカラム*/
    main.content {
        margin: 0 0 2em;
        padding: .5em;
        width: 100%;
    }

    /*メインコンテンツ - メインカラム - 固定ページ最上の親ページ　メインカラム100%*/
    body.page-parent main.content {
        /*親（body.page-parent）の場合メインカラム100%*/
        padding: .5rem;
    }

    /*メインコンテンツ - メインカラム - カスタム投稿タイプ（診療科・部門 / 採用情報）メインカラム100%*/
    body.post-type-archive-section main.content,
    body.tax-section-category main.content,
    body.post-type-archive-recruit main.content {
        padding: .5rem;
    }

    /*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
    body.page-parent.page-child main.content {
        /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
        width: 100%;
    }

    /*メインコンテンツ - サイドバー*/
    aside#sidebar {
        padding: .5em;
        width: 100%;
    }
	#footer-main .bl-aside .address img {
		width: 40%;
	}
	.footer-sub-nav ul li a {
		font-size:1.0rem;
	}
	.bl-aside .address>dl>dd span {
		font-size:1.0rem;
	}
}

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

@media(max-width:576px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    #header {
        align-items: center;
        display: flex;
    }

    #header::after {
        height: 92px;
    }

    /*SP用ヘッダコンテンツ - （Gtranslate・検索） */
    #sp-header-contents {
        padding: 1rem 0;
    }

    #sp-header-contents>div {
        margin: 0 .5rem;
    }

    /*グローバルナビゲーション*/
    #menu ul#menu-header li,
    #menu.toggled ul#menu-header li {
        width: 40%;
    }

    #menu ul#menu-header li a::before,
    #menu.toggled ul#menu-header li a::before {
        display: none;
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header {}

    #sub-header .sub-header-wrap {
        padding: 1rem 0;
    }

    #sub-header .sub-header-wrap .sub-header-title h2 {
        font-size: 1.5em;
        letter-spacing: unset;
    }

	
    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs {
        font-size: .875em;
    }
	#menu ul#menu-header li, #menu.toggled ul#menu-header li {
		margin: 0.5rem;
		width: 45%;
	}
    /* サイトサブナビ nav id="site-subnav" #site-subnav （フロントページ以外）
---------------------------------------------------- */
    #site-subnav {
        border-bottom: none;
    }

    #site-subnav ul {
        flex-wrap: wrap;
    }

    #site-subnav ul li {
        flex-direction: column;
        justify-content: space-around;
        width: 50%;
    }

    #site-subnav ul li:last-child {
        border-right: none;
    }

    #site-subnav ul li::before {
        margin: 0 .5rem 0 0;
    }

    /* ウィジェット（バナーエリア） #bnr-widget
---------------------------------------------------- */
    .widget-area#bnr-widget .section-wrap {}

    .widget-area#bnr-widget .section-wrap .bnr-area.slick {
        /* padding: 2rem 0;
        position: relative; */
        display: block;
    }


    .widget-area#bnr-widget .section-wrap .bnr-area.slick .slick-track {
        align-items: center;
        display: flex;
    }

    .widget-area#bnr-widget .section-wrap .bnr-area.slick li {
        align-items: center;
        display: flex;
        justify-content: center;
        margin: 0;
        padding: 0;
    }

    .widget-area .section-wrap .bnr-area.slick .slide-arrow {
        height: 1.5rem;
        width: 1.5rem;
    }

    .widget-area .section-wrap .bnr-area.slick .slide-arrow::before {
        font-size: 1.5rem;
    }

    .widget-area .section-wrap .bnr-area.slick .slide-arrow.next-arrow {
        position: absolute;
        right: -.25rem;
    }

    .widget-area .section-wrap .bnr-area.slick .slide-arrow.prev-arrow {
        position: absolute;
        left: -.25rem;
    }

    .widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.next-arrow {
        right: 0%;
    }

    .widget-area#bnr-widget .section-wrap .bnr-area.slick .slide-arrow.prev-arrow {
        left: 0%;
    }


    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/
    /* コピーライト */
    #copyright,
    #copyright a {
        /* border-bottom: rgba(255, 255, 255, .5) solid 1px; */
        flex: auto;
        width: 100%;
    }

    /* 職員専用リンク */
    #staffonly {
        border-right: rgba(255, 255, 255, .5) solid 1px;
        flex: 1;
    }

    #staffonly a,
    #staffonly a:hover {
        background-color: rgba(56, 101, 128, 0);
    }
}

@media(max-width:350px) {

    /* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*SP用ヘッダコンテンツ - （Gtranslate・検索） */
    #sp-header-contents {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* 検索 */
    #sp-header-contents .search {
        flex: auto;
        margin: .5rem 0 0 0;
        padding: 0 10%;
        width: 80%;
    }

    /*グローバルナビゲーション*/
    #menu ul#menu-header li,
    #menu.toggled ul#menu-header li {
        margin: 0 1rem 1rem 1rem;
        width: 100%;
    }

    /* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - パンくずナビ*/
    .breadcrumbs {
        display: none;
    }

    /* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /* アドレス */
    .bl-aside .address>dl {
        padding: 0 .5rem;
        text-align: left;
    }
}