@charset "utf-8";
/* Generic Child-suita 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;
*/
/*
オーカーブラウン：#a9cf33 / rgba(145,114,16,1.00)
ライムグリーン　 ：#c3d825 / rgba(195,216,37,1.00)
ベージュピンク　 ：#fef9fb / rgba(254,249,251,1.00)
*/

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

/*テキスト選択時カラー*/
::selection {
    background: rgba(195,216,37,.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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", 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: #a9cf33;
    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;
}
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;
}
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: 1em;
    line-height: 160%;
    margin: 1em 0;
}
/*a（ハイパーリンク）要素スタイル上書き*/
a {
    color: #a9cf33;
    transition: .3s;
}
a:hover {
    color: #c3d825;
}
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: '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;
    padding: 0.4rem 0.4rem 0rem 0.4rem;
}
/*ヘッダコンテンツ - サイトタイトル*/
#header-contents #site-title {
    margin: 0;
}
#header-contents #site-title h1 a img{
    height: auto;
	margin-top: 10px;
    width: auto;
}
/*ヘッダコンテンツ - 住所*/
#header-contents address{
    font-size: .875rem;
    padding: 0 1rem;
}
#header-contents address p{
    margin: 0;
}
#header-contents address p span{
    display: block;
}
#header-contents address .facility_zip::before{
    content: "〒";
    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{
    display: block;
    padding: 0 .5rem;
}
#header-contents .cont-btn {
	
}
#header-contents .cont-btn li.facility_phone{
    color: #a9cf33;
	font-size: 30px;
}
#header-contents .cont-btn li.link-kango a{
    color: #fff;
	background-color: #ff6a63;
	font-size: 16px;
	padding: 12px;
	text-decoration: none;
	display: flex;
    align-items: center;
	border-radius: 5px;
}
#header-contents .cont-btn li.link-kango a::before{
 background: url(../images/common/ico_link-kango.png) center no-repeat;
    background-size: contain;
    content: "";
    display:inline-flex;
    height: 20px;
    margin: 0 .25rem 0 0;
    width: 30px;
}
#header-contents .cont-btn li.link-inquiry a{
    color: #fff;
	background-color: #f29228;
	font-size: 16px;
	padding: 12px;
	text-decoration: none;
	display: flex;
    align-items: center;
	border-radius: 5px;
}
#header-contents .cont-btn li.link-inquiry a::before{
 background: url(../images/common/ico_link-inquiry.png) center no-repeat;
    background-size: contain;
    content: "";
    display:inline-flex;
    height: 20px;
    margin: 0 .25rem 0 0;
    width: 30px;
}

#header-contents .cont-btn li.facility_phone a::before{
 background: url(../images/common/ico_phone.png) center no-repeat;
    background-size: contain;
    content: "";
    display:inline-flex;
    height: 28px;
    margin: 0 .25rem 0 0;
    width: 24px;
}

/*Gtranslate*/
#header-contents .cont-btn li .translate{
    border: #ddd solid 1px;
	padding: 0.8rem;
}
#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;
} 
#header-contents .cont-btn li .translate a span{
    margin: 0 .25rem;
    text-transform: uppercase;
} 
/*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;
}
/*SNSボタン －採用情報ページ*/

.entry-content div.border-brown{
    border: rgba(145,114,16,.25) solid 2px;
    padding: 1rem;
}

.entry-content ul.sns-btn{
    align-items: center;
    display: flex;
    justify-content: flex-start;
    list-style: none;
}

.entry-content ul.sns-btn li.sns{
    display: block;
    padding: 0 .5rem;
}

.entry-content ul.sns-btn li.sns:last-child{
    margin-bottom: 1em;
}

.entry-content .sns-btn li.sns a::before{
    display: none;
}

.entry-content .sns-btn li.sns a img{
    height: 1.75rem;
    opacity: 1;
    transition: .3s;
}
.entry-content .sns-btn li.sns a:hover img{
    opacity: .5;
}


/*検索窓*/
#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: 9rem;
	height: 47px;
}
#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;
	width: 47px;
    text-align: center;
    justify-content: center;
	border-radius: 5px;
}
#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;
	    background-color: #fff;
}

#menu ul {
    align-items: center;
    background-color: #fff;
    display: flex;
    font-size: inherit;
    justify-content: space-between;
    margin: 0 ;
    /* padding: 1rem; */
    padding: 0rem 0.6rem 0.8rem 0rem;
    width: 1240px;
}
#menu ul li{
    align-items: center;
    display: flex;
    /* padding: .5em 1em; */
    padding: .5em;
}
#menu ul li a {
    align-items: center;
    color: #000;
    display: flex;
     font-size: 1.2rem;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
    text-align: inherit;
    text-decoration: none;
    width: 100%;
	    font-weight: 500;
}
#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: #a9cf33;
    text-decoration: none
}

#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: rgba(145,114,16,.50);
        bottom: -1.5rem;
}

/*SP用グローバルナビハンバーガーボタン*/
#menu .menu-toggle {
    display: none;
}
/*ナビゲーション内コンテンツ*/
#menu .sp-menu-contents {
    display: none;
}

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header{
    background: rgba(145,114,16,.25) url("../images/common/bg_sub-header.png") center no-repeat;
    background-size: cover;
    height: 240px;
    margin: 0;
    padding: 0;
    width: 100%;
}
#sub-header .sub-header-wrap{
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    margin: 0 auto;
    padding: 0 0 2rem;
    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-size: 2em;
    font-weight: normal;
    letter-spacing: .25rem;
}
#sub-header .sub-header-wrap .sub-header-title .slag{
    color: #fff;

    font-size: .875em;
}
/*メインコンテンツ - パンくずナビ*/
.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;
    width: 1240px;
	    margin: 2em auto 5rem auto;
}
/*メインコンテンツ - メインカラム*/
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.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;
	display: none;
    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: #eaefc5;
    font-size: .875rem;
    margin: 0;
    padding: 0;
}
/*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
#footer #footer-main{
    display: flex;
    justify-content: space-between;
    margin: 50px auto;
    width: 1240px;
	padding: 50px;
}
#footer-main > div {
    padding: 1rem;
}
/*フッタメイン - aside（施設名・住所・電話番号・SNSリンク群・フッターサブナビ）*/
#footer-main .bl-aside{
    width: 50%;
}
/* 施設名・住所・電話番号 */
#footer-main .bl-aside .address {
    margin: 0 ;
    padding: 0;
    width: 100%;
}
.bl-aside .address > dl{}
.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;
}
/* SNSリンク群 */
.bl-aside .address > dl > dd.sns{
    padding: 1rem 0;
}
.bl-aside .address > dl > dd.sns ul {
    display: flex;
}
.bl-aside .address > dl > dd.sns ul li{
    margin: 0 .5rem;
}
.bl-aside .address > dl > dd.sns ul li a img {
    height: 1.75rem;
    opacity: 1;
    transition: .3s;
}
.bl-aside .address > dl > dd.sns ul li a:hover img {
    opacity: .5;
}
/* フッターサブナビ */
.bl-aside .footer-sub-nav ul li{
    padding: .5rem 0;
}
.bl-aside .footer-sub-nav ul li a{
    color: #000;
    text-decoration: none;
}
#footer-main .bl-aside .address img{
margin-bottom: 20px;	
}
.bl-aside .address > dl > dd span.facility_phone {
	margin-bottom: 20px;	
}

/*フッタメイン - main（フッターメインナビ）*/
#footer-main .bl-main{
    width: 50%;
}
/* フッターメインナビ */
.bl-main .footer-nav {
	margin-bottom: 30px;
}
.bl-main .footer-nav ul{
    column-count: 3;
    column-gap: 3%;
}

.bl-main .footer-nav ul li a{
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    text-decoration: none;
	color: #689d79;font-size: 18px;
	font-weight: 500;
}
.bl-main ul.sns-btn{
    display: flex;
	justify-content: flex-start;
} 
.bl-main ul.sns-btn li{
    margin: 10px;
}
.bl-main ul.sns-btn li img{
    width: 80%;
} 
#footer-sub {
	display: flex;
	justify-content: space-between;
}
#footer-sub .footer-sub-nav a{
	color: #fff;
	text-decoration: none;
}
#footer-sub .footer-sub-nav ul{
	display: flex;
	margin-right: 50px;
}
#footer-sub .footer-sub-nav ul li{
	margin: 12px;
}
/*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/

#footer #footer-sub{
    align-items: center;
    background-color: #a9cf33;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}
#footer-sub > p {
    margin: 0;
}
/* コピーライト */
#copyright, 
#copyright a {
    color: #fff;
    flex: 1;
    font-size: .875em;
    padding: .75rem;
    text-align: left;
}
/* 職員専用リンク */
#staffonly {
    padding-right: 2.5rem;
}
#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;
    position:fixed;
    bottom: 0;
    right: 0;
    background-color: #00aa3c;
    z-index: 100;
}
#pagetop a {
    background-color: rgba(255,255,255,0.00);
    color: rgba(255,255,255,1.00);
    padding: .75rem 1rem;
}
#pagetop a:hover {
    background-color: rgba(255,255,255,.15);
}

/* WEB予約リンク関連（TOP：ポップアップ　common：headerエリア）
---------------------------------------------------- */
/* ポップアップ表示 ----- */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup .popup-inner {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%,-50%);
  width: 55%;
  /* width: 40%; */
  padding: 40px 40px 40px 40px;
  background-color: #fff;
  z-index: 2;
  overflow: auto;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.4);
  /* max-height: 700px; */
  max-height: 600px;
}
.popup .popup-inner p{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}
.popup .popup-inner p.day{
  text-align: right;
  margin-top: 50px;
}
.popup .popup-inner img {
  width: 100%;
}
.popup .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}
.popup .close-btn i {
  font-size: 25px;
  color: #333;
}
.popup .black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 1;
  cursor: pointer;
}
.popup h1 {
	text-align: center;
	color:000;
	margin-bottom: 2em;
  margin-top: 0.8em;
  font-size: 1.6rem;
}
.popup h2 {
	font-size: 1.4em;
	margin: 0.4em 0;
  color: red;
	font-weight: bold;
}
.popup .red-b {
  font-weight: bold;
  color: red;
}
.popup .box01 {
	background-color: #f3f3f3;
	padding: 15px;
	margin-bottom: 1em;
  border-radius: 5px;
}
.popup .box01 ol.number {
  margin-top: 20px;
  margin-bottom: 20px;
  counter-reset: my-counter;
  list-style: none;
}
.popup .box01 ol.number li{
  margin-bottom: 10px;
   padding-left: 30px;
   position: relative;
   font-weight: bold;
}
.popup .box01 ol.number li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #BBB;
  color: #FFF;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 22px;
  width: 22px;
  border-radius: 50%;
}
/*ポップアップ内 Web診療予約告知*/
.popup .box01.web-reserve {}
.popup .box01.web-reserve p ,
.popup .box01.web-reserve dl ,
.popup .box01.web-reserve ul {
    font-size: 1rem;
    font-weight: normal;
    margin-bottom: .5rem;
    text-align: left;
}
.popup .box01.web-reserve > p {
    text-align: center;
}
.popup .box01.web-reserve dl.attention ul{
    margin-left: 30px;
}
.popup .box01.web-reserve div.web_reserve {
    margin: 2rem auto;
    width: 100%;
}
.popup .box01.web-reserve div.web_reserve a {
    margin: 0 auto;
    width: 95%;
}
.popup .box01.web-reserve div.web_reserve a::after {
    height: 80px;
    width: 80px;
}
.popup .box01.web-reserve dl.attention ,
.web_reserve + dl.attention{
    border-bottom: #f00 double 3px;
    border-top: #f00 double 3px;
    margin: 1rem 0 0 0;
    padding: 1rem;
}
.popup .box01.web-reserve dl.attention dt ,
.web_reserve + dl.attention dt {
    color: #f00;
    font-weight: bold;
    padding: 0 0 .25rem;
}
.popup .box01.web-reserve dl.attention-list dt ,
.web_reserve + dl.attention dt{
	border-bottom: dashed 1px #f00;
	/* font-size: 0.95em; */
	margin-bottom: 10px;
	font-weight: 450;
}

.popup .box01.web-reserve dl.attention-list dt::before ,
.web_reserve + dl.attention dt::before {
	content: '◎';
	color: #f00;
	margin-right: 8px;
}

.popup .box01.web-reserve .m20-b{
margin-bottom: 20px;
}

.popup .box01.web-reserve .m10-b{
    margin-bottom: 10px;
}
.web_reserve a {
    align-items: center;
    /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(0, 129, 138, 0.2) calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), rgba(0, 129, 138, 0.2) calc(100% - 1px));
    background-size: 10px 10px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #fff;
    /* 以下任意のスタイル */
    padding: 5px;
    border:rgba(0, 129, 138, 1.00) solid 5px;
    border-radius: 5px;
    color: #333;
    display: flex;
    font-size: 1.05rem;
    font-weight: bold;
    justify-content: center;
    padding: .5rem;
    text-decoration: none;
    transition: .3s;
}
.web_reserve a span > span{
    color: rgba(0, 129, 138, 1.00);
    display: block;
    font-size: 1.3rem;
    padding: 0 0 .5rem;
}
.web_reserve a:hover {
    background-color: rgba(0, 129, 138, .10);
    opacity: .7;
}
.web_reserve a::after {
    content: "";
    background: url("../images/common/web_reserve.png") center no-repeat;
    background-size: contain;
    display: block;
    height: 120px;
    margin: 0 0 0 1rem;
    width: 120px;
}
dl.web-reserve_attention {
    border-bottom: #f00 double 3px;
    border-top: #f00 double 3px;
    padding: 1rem;
    margin: 0 0 20px;
}
dl.web-reserve_attention dt {
    color: #f00;
    font-weight: bold;
    padding: 0 0 .25rem;
}
dl.web-reserve_attention dd ul {
    margin-bottom: 10px;
}

/* header：WEB診療予約リンク ----- */
header .header-web {
    max-width: 240px;
    width: 100%;
}
header .header-web a{
    align-items: center;
    background-color: #fff;
    border:rgba(0, 129, 138, 1) solid 3px;
    border-radius: 5px;
    color: #333;
    display: flex;
    font-weight: bold;
    justify-content: center;
    padding: .25rem;
    position: relative;
    text-decoration: none;
    transition: .3s;
}
header .header-web a::before {
    content: "";
    background: url("../images/common/web_reserve.png") center no-repeat;
    background-size: contain;
    display: block;
    height: 40px;
    margin: 0 .5rem 0 0;
    width: 60px;
}
header .header-web a::after {
    content: "";
    background-color: transparent;
    display: block;
    height: 100%;
    position: absolute;
        left: 0;
        top: 0;
    width: 100%;
}
header .header-web a:hover::after  {
    background-color: rgba(0, 129, 138,.10);
    transition: .3s;
}
header .header-web a span {
    color: rgba(0, 129, 138, 1);
    text-align: left;
}
header .header-web a span > span {
    color: rgba(0, 0, 0, 1.00);
    display: inline-block;
    font-size: .75rem;
    font-weight: normal;
    width: 100%;
}

header .header-web-wrap{
    display: flex;
    justify-content: end;
    margin-right: 20px;
}


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


@media(max-width:1366px) {
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*グローバルナビゲーション*/
    #menu ul{
        width: 100%;
    }
		#header-contents .cont-btn li.facility_phone {
		font-size: 24px;
	}
	#header-contents .cont-btn li {
		    padding: 0 .3rem;
	}

}

@media(max-width:1260px) {
/* ヘッダ header id="header" #header
---------------------------------------------------- */
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    /*お問い合わせボタン*/
    #header-contents .cont-btn li.link-inquiry a::before{
        margin: 0;
    }
    #header-contents .cont-btn li.link-inquiry a span{
        display: none;
    }
	#header-contents .cont-btn li .translate {
		padding: 0.5rem
	}
	#header-contents .cont-btn li.search form input {
		    height: 38px
	}

	#header-contents .cont-btn li.link-kango a ,
	#header-contents .cont-btn li.link-inquiry a {
		display: block;
		font-size: 14px;
		padding: 8px;
	}
	#header-contents .cont-btn li.link-kango a::before,
	#header-contents .cont-btn li.link-inquiry a::before {
		display: block;
		margin: 0 auto;
	}
	#header-contents .cont-btn li.facility_phone a::before {
		height: 24px;
	}
/* コンテナ div id="container" #container
---------------------------------------------------- */
    /*メインコンテンツ - サブヘッダ*/
    #sub-header{}
    #sub-header .sub-header-wrap{
        width: 90%;
    }
    #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%;
    }
    
/* フッタ footer id="footer" #footer
---------------------------------------------------- */
    /*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
    #footer #footer-main{
        border: none;
        width: 100%;
    }
}
@media(max-width:1150px) {
	#header-contents .cont-btn li.link-kango a, #header-contents .cont-btn li.link-inquiry a {
	padding: 8px 5px;
    text-align: center;
    }
	#header-contents .cont-btn li.facility_phone {
		width:170px; 
	}
	#header-contents .cont-btn li.link-kango a, #header-contents .cont-btn li.link-inquiry a {
		font-size: 13px;
		padding: 5px;
	}
		#header-contents .cont-btn li.link-kango, #header-contents .cont-btn li.link-inquiry {
		    width: 120px;
	}
	#header-contents .cont-btn li.facility_phone {
		        font-size: 21px;
	}
}
@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 #site-title h1 a img{
        max-height: 30px;
    }
    /*ヘッダコンテンツ - 住所*/
    #header-contents address{
        display: none;
    }
    /*ヘッダコンテンツ - 各種コンテンツリンクボタン*/
    #header-contents .cont-btn{
        display: none;
    }
	#header-contents #site-title h1 a img {
		margin-bottom: 10px!important;
		max-height: 50px;
	}
	#header-contents {
		margin-left: 10px;
		text-align: left;
	}
	#header-contents #site-title h1 a img {
		margin-left: 10px;
	}
    /*SP用ヘッダコンテンツ - （Gtranslate・検索） */
    
    #sp-header-contents {
        background: rgba(145,114,16,.10);
        justify-content: space-between;
        padding: 1rem;
		display: none;
    }
    #sp-header-contents >div {
        margin: 0 1rem;
    }
    /*Gtranslate*/
    #sp-header-contents .translate{
        background-color: #fff;
        border: #ddd 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;
    } 
    #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.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 {
        width: fit-content;
    }
    #menu div:first-of-type{
        display: block;
        margin: 3.8em 0 0 0;
    }
    #menu .menu-header-container {
        display: flex;
        justify-content: center;
    }
    #menu .menu-header-container::before ,
    #menu .menu-header-container::after {
        display: none;
    }
	#menu ul#menu-header li, #menu.toggled ul#menu-header li {
        border: #a9cf33 solid 1px;
        margin: 3px;
        border-radius: 5px;
        background-color: #fff;
        width: 45%;
	}
	#menu ul {
		background: none;
	}
	#menu ul#menu-header li a, #menu.toggled ul#menu-header li a {
		padding: 15px;
	}
	#menu .menu-header-container {
		background: none;
	}
    /*グローバルナビゲーション - OPEN時*/
    #menu.toggled {
        height: 100vh;
        overflow-x: auto;
        overflow-y: auto;
        position: fixed;
            right: 0;
            top: 0;
    }
    /*ログイン時のアドミンバー表示調整*/
    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.toggled .sp-menu-contents .site-title{
        margin: 0;
        text-align: center;
		
    }
	.block-area {
	display: block;
		        text-align: center;
		        width: 100%;
        margin: 0px auto;
	}
    #menu.toggled .sp-menu-contents address , 
    #menu.toggled .sp-menu-contents ul.cont-btn{
        width: 100%;
    }
    /*ナビゲーション内コンテンツ - 住所・電話番号*/
    #menu.toggled .sp-menu-contents address{
        font-size: .875rem;
        text-align: center;
    }
    #menu.toggled .sp-menu-contents address p{
        margin: .5rem;
    }
    #menu.toggled .sp-menu-contents address .facility_zip::before{
        content: "〒";
        display: inline;
        padding: 0 .25em 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: 0 .5rem;
    }
    #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.link-inquiry{
     width: 45%;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a{
color: #fff;
        background-color: #f29228;
        font-size: 16px;
        padding: 12px;
        /* text-decoration: none; */
        display: flex;
        align-items: center;
        border-radius: 5px;
        margin: 20px auto 30px auto;
        width: 100%;
		justify-content: center;
    }
	#menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a::before{
    background: url(../images/common/ico_link-inquiry.png) center no-repeat;
    background-size: contain;
    content: "";
    display: inline-flex;
    height: 20px;
    margin: 0 .25rem 0 0;
    width: 30px;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a:hover{
        background-color: rgba(242,146,40,.35);
    }
	#menu.toggled .sp-menu-contents .cont-btn li.link-kango {
		width: 45%;
	}
    #menu.toggled .sp-menu-contents .cont-btn li.link-kango a{
color: #fff;
        background-color: #ff6a63;
        font-size: 16px;
        padding: 12px;
        /* text-decoration: none; */
        display: flex;
        align-items: center;
        border-radius: 5px;
        margin: 20px auto 30px auto;
        width: 100%;
		justify-content: center;
    }
	#menu.toggled .sp-menu-contents .cont-btn li.link-kango a::before{
    background: url(../images/common/ico_link-kango.png) center no-repeat;
    background-size: contain;
    content: "";
    display: inline-flex;
    height: 20px;
    margin: 0 .25rem 0 0;
    width: 30px;
    }
    #menu.toggled .sp-menu-contents .cont-btn li.link-kango a:hover{
        background-color: rgba(255,106,99,.35);
    }
	#menu.toggled .sp-menu-contents .cont-btn.link-btn {
	justify-content: center;
		width: 100%;
	}
    /*グローバルナビゲーションメニュー*/
    #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: 1rem;
        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;
        text-align: center;
        width: 100%;
    }
    #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(145,114,16,1.00);
    }
    #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: #a9cf33;
        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: #82ae46;
    }
    #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;
    }
    /*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 #footer-main {
		padding:20px;
	}
	#footer-main .bl-aside .address img {
		width: 80%;

	}
	#footer-main .map{
		width: 300px;
	}
	#footer-main .bl-aside {
		width: 40%;
	}
		#footer-main .bl-main {
		width: 60%;
	}
	.bl-main .footer-nav ul li a {
		font-size: 16px;
	}
}
@media screen and (max-width: 880px){
	#footer-main .map {
		width: 260px;
	}
	
	
}
@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: 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%;
    }
	/* 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;
    }
    #header-contents #site-title h1 a img {
        width: 70%!important;
    }
	.sp-menu-contents .site-title h1 img {
		
	}
/* コンテナ div id="container" #container
---------------------------------------------------- */
	#header-contents {
		margin-left: 0px;
	}
    /*メインコンテンツ - サブヘッダ*/
    #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 id="footer" #footer
---------------------------------------------------- */
    /*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
    #footer #footer-main {
        margin: 0;
    }
    /*フッタメイン - aside（施設名・住所・電話番号・SNSリンク群・フッターサブナビ）*/
    #footer-main .bl-aside{
        border-right: none;
        padding: 2rem 0 0 0;
        width: 100%;
    }
    /* SNSリンク群 */
    .bl-aside .address > dl > dd.sns ul {
        justify-content: center;
    }
    /* フッターサブナビ */
    .bl-aside .footer-sub-nav ul{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .bl-aside .footer-sub-nav ul li{
        border-bottom: none;
        border-top: #ddd solid 1px;
        border-right: #ddd solid 1px;
        padding: 0;
        width: 50%;
    }
    .bl-aside .footer-sub-nav ul li:nth-child(2n){
        border-right: #ddd solid 0px;
    }
    .bl-aside .footer-sub-nav ul li:nth-last-child(2) ,
    .bl-aside .footer-sub-nav ul li:last-child{
        border-bottom: #ddd solid 1px;
    }
    .bl-aside .footer-sub-nav ul li a{
        display: block;
        padding: 1rem .5rem;
    }
    /*フッタメイン - main（フッターメインナビ）*/
    #footer-main .bl-main{
        display: none;
    }
	#footer .map {
		width: 400px;
	}
	#footer-main .bl-aside .address img {
		width: 50%;
	}
	#footer #footer-sub {
		display: block;
	}
	#footer-sub .footer-sub-nav ul {
		flex-wrap: wrap;
		        justify-content: space-between;
		margin-right:0px;
	}
	

	#footer-sub .footer-sub-nav ul li {
		width: 50%;
		border-bottom: none;
        border-top: #fff solid 1px;
        border-right: #fff solid 1px;
        padding: 0;
		margin: 0;
	}
	#footer-sub .footer-sub-nav ul li a{
		        padding: 1rem .5rem;
		display: block;
	}
	#footer-sub .footer-sub-nav ul li:last-child {
		width: 100%;
		border-bottom: #fff solid 1px;
	}
}
@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: 45%;
		margin: 10px 5px;
    }
    #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;
    }
    
/* サイトサブナビ 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;
    }
    
/* フッタ 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);
    }
	#footer-main .bl-aside .address img {
		        width: 50%;
	}
		#footer .map {
		width: 300px;
	} 

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