@charset "utf-8";
/* Generic Child-musashino-er 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;
*/
/*
オーカーブラウン：rgba(0, 117, 194, 1) / 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(44, 169, 225, 0.2);
  color: #666;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: unset;
}
html {
  scroll-behavior: auto;
}
body {
  animation: fadeIn 0.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 0.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: 0.5em;
}
input:focus,
textarea:focus {
  background-color: #fcfcfc;
  border: rgba(44, 169, 225, 0.5) solid 1px;
}
input[type="submit"],
button,
.button {
  background: rgba(0, 117, 194, 1);
  border: 0;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 18px;
  margin: 0 auto;
  padding: 0.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: 0.875rem;
  flex: 1;
  width: calc(100% - 2rem);
}
form.search-form button {
  align-items: center;
  display: flex;
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5em;
  transition: 0.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: #333333;
  transition: 0.3s;
}
a:hover {
  color: #2ca9e1;
}
a img {
  transition: 0.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.5rem 0.5em 0.5em 1.5em;
  background-color: rgba(248, 244, 230, 0.6);
}
/*ヘッダコンテンツ - サイトタイトル*/
#header-contents #site-title {
  margin: 0;
}
#header-contents #site-title h1 a img {
  height: auto;
  margin: 0;
  max-height: 60px;
  width: auto;
}
/*ヘッダコンテンツ - 住所*/
#header-contents address {
  font-size: 0.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 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 0.5rem;
}

#header-contents .cont-btn li.tel {
  background: rgba(255, 255, 255, 1);
  align-items: center;
  border-radius: 2rem;
  /* content: "\f002"; */
  display: flex;
  justify-content: center;
  height: 2.5em;
  transition: 0.3s;
  /* width: 2.5em; */
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875em;
}

#header-contents .cont-btn li.tel::before {
}

#header-contents .cont-btn li.link-access a,
#header-contents .cont-btn li.link-inquiry a {
  background: rgba(255, 255, 255, 1);
  align-items: center;
  border-radius: 2rem;
  content: "\f002";
  display: flex;
  justify-content: center;
  height: 2.5em;
  transition: 0.3s;
  width: 2.5em;
  text-decoration: none;
}
#header-contents .cont-btn li.link-access a::before {
  content: "";
  color: #2ca9e1;
  background: url("../images/common/ico_access.png") center no-repeat;
  background-size: contain;
  display: inline;
}
#header-contents .cont-btn li.link-inquiry a::before {
  content: "";
  color: #2ca9e1;
  background: url("../images/common/ico_inquiry.png") center no-repeat;
  background-size: contain;
  display: inline;
}

/*Gtranslate*/
#header-contents .cont-btn li .translate {
  border: #ddd solid 1px;
  background-color: #ffffff;
  padding: 0.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 0.25rem;
}
#header-contents .cont-btn li .translate a span {
  margin: 0 0.25rem;
  text-transform: uppercase;
}
/*SNSボタン*/
#header-contents .cont-btn li.sns a img {
  height: 1.75rem;
  opacity: 1;
  transition: 0.3s;
}
#header-contents .cont-btn li.sns a:hover img {
  opacity: 0.5;
}
/*SNSボタン －採用情報ページ*/

.entry-content div.border-brown {
  border: rgba(44, 169, 225, 0.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 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: 0.3s;
}
.entry-content .sns-btn li.sns a:hover img {
  opacity: 0.5;
}

/*電話番号*/
.entry-content .cont-btn li.tel {
  align-items: center;
  background-color: rgba(44, 169, 225, 0);
  border: rgba(0, 117, 194, 1) solid 1px;
  color: rgba(0, 117, 194, 1);
  display: flex;
  font-size: 0.875rem;
  justify-content: space-around;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: 0.3s;
}

/* #header-contents .cont-btn li.tel a:hover {
  background-color: rgba(44, 169, 225, 0.15);
} */
#header-contents .cont-btn li.tel::before {
  background: url("../images/common/ico_tel.svg") center no-repeat;
  background-size: contain;
  content: "";
  display: flex;
  height: 1.5em;
  width: 1.5em;
  margin: auto 0.5em;
}

/*交通アクセスボタン*/
.entry-content .cont-btn li.link-access a {
  align-items: center;
  background-color: rgba(44, 169, 225, 0);
  border: rgba(0, 117, 194, 1) solid 1px;
  color: rgba(0, 117, 194, 1);
  display: flex;
  font-size: 0.875rem;
  justify-content: space-around;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: 0.3s;
}

#header-contents .cont-btn li.link-access a:hover {
  background-color: rgba(44, 169, 225, 0.15);
}
#header-contents .cont-btn li.link-access a::before {
  background: url("../images/common/ico_access.svg") center no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  width: 1.5em;
}

/*お問い合わせボタン*/
.entry-content .cont-btn li.link-inquiry a {
  align-items: center;
  background-color: rgba(44, 169, 225, 0);
  border: rgba(0, 117, 194, 1) solid 1px;
  color: rgba(0, 117, 194, 1);
  display: flex;
  font-size: 0.875rem;
  justify-content: space-around;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: 0.3s;
}

#header-contents .cont-btn li.link-inquiry a:hover {
  background-color: rgba(44, 169, 225, 0.15);
}
#header-contents .cont-btn li.link-inquiry a::before {
  background: url("../images/common/ico_inquiry.svg") center no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.5em;
  width: 1.5em;
}
/*検索窓*/
#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: 0.875rem;
  width: 8rem;
}
#header-contents .cont-btn li.search form button {
  align-items: center;
  display: flex;
  font-size: 1rem;
  margin: 0 0 0 0.5rem;
  padding: 0.5em;
  transition: 0.3s;
}
#header-contents .cont-btn li.search form button::before {
  background: url("../images/common/ico_search.svg") center no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
}
#header-contents .cont-btn li.search form button:hover,
#header-contents .cont-btn li.search form button:focus {
  opacity: 0.8;
}

/*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: end;
}
/* #menu .menu-header-container::before {
  border-top: 4rem solid #fff;
  border-left: 1rem solid transparent;
  border-right: 0 solid transparent;
  box-sizing: border-box;
  content: "";
  display: block;
  width: 2rem;
  height: 4rem;
}
#menu .menu-header-container::after {
  border-top: 4rem solid #fff;
  border-left: 0 solid transparent;
  border-right: 1rem solid transparent;
  box-sizing: border-box;
  content: "";
  display: block;
  width: 2rem;
  height: 4rem;
} */
#menu ul {
  align-items: center;
  /* background-color: #fff; */
  display: flex;
  font-size: inherit;
  justify-content: flex-end;
  margin: 0;
  /* padding: 1rem; */
  padding: 1rem 0 0 0;
  width: fit-content;
}
#menu ul li {
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  display: flex;
  padding: 0.5em;
}
#menu ul li a {
  align-items: center;
  color: #333;
  display: flex;
  /* font-size: 1rem; */
  font-size: 0.95rem;
  height: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-decoration: none;
  width: 100%;
}
#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: rgba(44, 169, 225, 1);
  text-decoration: none;
}
#menu ul li a::after {
  background: rgba(44, 169, 225, 0);
  content: "";
  height: 3px;
  position: absolute;
  bottom: -0.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: rgba(44, 169, 225, 0.5);
  bottom: -1rem;
}

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

/* コンテナ div id="container" #container
---------------------------------------------------- */
/*メインコンテンツ - サブヘッダ*/
#sub-header {
  background: rgba(44, 169, 225, 0.25) 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: 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, 0.25),
    1px -1px 3px rgba(0, 0, 0, 0.25),
    -1px 1px 3px rgba(0, 0, 0, 0.25),
    -1px -1px 3px rgba(0, 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: 0.25rem;
}
#sub-header .sub-header-wrap .sub-header-title .slag {
  color: #fff;
  font-size: 0.875em;
}
/*メインコンテンツ - パンくずナビ*/
body {
  background-color: rgba(248, 244, 230, 0.6);
}

.breadcrumbs {
  background-color: rgba(0, 117, 194, 1);
  margin: 0;
  padding: 0;
  width: 100%;
}
.breadcrumbs .bradcrumbs-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0.5rem;
}

.breadcrumbs .bradcrumbs-wrap a {
  color: #fff;
}

.breadcrumbs .bradcrumbs-wrap span {
  font-size: 0.875em;
  padding: 0 0.15rem;
  color: #fff;
}
.breadcrumbs .bradcrumbs-wrap .material-symbols-outlined {
  font-family: "Material Icons";
}

#container {
  /* background-color: transparent; */
  background-color: rgba(248, 244, 230, 0.1);
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2em auto;
  width: 1240px;
  border-radius: 2em;
  padding: 2em;
}
/*メインコンテンツ - メインカラム*/
main.content {
  background-color: #fff;
  float: none;
  margin: 0;
  width: 75%;
}
/*メインコンテンツ - メインカラム - 固定ページ最上の親ページ　メインカラム100%*/
body.page-parent main.content {
  /*親（body.page-parent）の場合メインカラム100%*/
  /* padding: 3em; */
  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;
  background: transparent;
  padding-right: 2em;
}
/*メインコンテンツ - サイドバー - 固定ページ最上の親ページ　サイドバー非表示*/
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: rgba(44, 169, 225, 1);
}
/*該当ページ滞在時*/
aside#sidebar .child-page-box ul li.current_page_item > a,
aside#sidebar .child-page-box ul li.current > a {
  /* background-color: #f7f7f7; */
  color: rgba(44, 169, 225, 1);
}

/*第一階層*/
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 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: 0.75rem 0 0.75rem 1rem;
}
aside#sidebar .child-page-box > ul > li > ul > li a::before {
  content: "\eac9";
  font-family: "Material Icons";
  padding: 0 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: 0.75rem 0 0.75rem 2rem;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li a::before {
  content: "-";
  padding: 0 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: 0.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: rgba(44, 169, 225, 1);
}
aside#sidebar .widget-container ul li a::before {
  content: "\e5cc";
  font-family: "Material Icons";
  padding: 0 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: rgba(44, 169, 225, 1);
}

/* サイトサブナビ 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; */
  display: none;
}
#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: 0.5rem;
  position: relative;
  transition: 0.3s;
  width: calc(100% / 6);
}
#site-subnav ul li:hover {
  opacity: 0.7;
}
#site-subnav ul li a {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.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: #ffffff;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  /* font-family: "Noto Sans JP";
  font-weight: 500; */
}
/*フッタメイン（施設名・住所・電話番号・SNSリンク群・フッターサブナビ・フッターメインナビ）*/
#footer #footer-main {
  /* border-left: #ddd solid 1px;
    border-right: #ddd solid 1px; */
  display: flex;
  justify-content: space-between;
  margin: 50px auto;
  width: 1240px;
}
#footer-main > div {
  padding: 1rem;
}
/*フッタメイン - aside（施設名・住所・電話番号・SNSリンク群・フッターサブナビ）*/
#footer-main .bl-aside {
  /* border-right: #ddd solid 1px; */
  width: 45%;
}
/* 施設名・住所・電話番号 */
#footer-main .bl-aside .address {
  margin: 0;
  padding: 0;
  width: 100%;
}
.bl-aside .address > dl {
}
.bl-aside .address > dl > dt {
  padding: 0 0 1em;
}

.bl-aside .address > dl > dt a img {
  padding: 0.5em 3em;
}

.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 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 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 0.5rem;
}
.bl-aside .address > dl > dd.sns ul li a img {
  height: 1.75rem;
  opacity: 1;
  transition: 0.3s;
}
.bl-aside .address > dl > dd.sns ul li a:hover img {
  opacity: 0.5;
} */

/* btnリンク群 */
.bl-aside .address > dl > dd.btn {
  padding: 1rem 0;
}
.bl-aside .address > dl > dd.btn ul {
  display: flex;
}
.bl-aside .address > dl > dd.btn ul li {
  margin: 0 0.5rem;
  border: solid 1px rgba(0, 117, 194, 1);
  padding: 5px 10px;
  border-radius: 20px;
}
.bl-aside .address > dl > dd.btn ul li a {
  height: 1.75rem;
  color: rgba(0, 117, 194, 1);
  text-decoration: none;
  /* opacity: 1; */
}
.bl-aside .address > dl > dd.btn ul li:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/* フッターサブナビ */
.footer-sub-nav {
	    order: 2;
}
#pagetop {
	    align-items: center;
    display: flex;
    order: 3;
    position: absolute;
    bottom: 0;
    right: 0;
}
.footer-sub-nav ul {
display: flex;
    flex-wrap: wrap;
	margin-right: 40px;

}

.footer-sub-nav ul li {

  padding: 0.5rem 1rem;
}
.footer-sub-nav ul li a {
  color: #fff;
  text-decoration: none;
}


/*フッタメイン - main（フッターメインナビ）*/
#footer-main .bl-main {
  width: 55%;
}
/* フッターメインナビ */
.bl-main .footer-nav ul {
  column-count: 3;
  column-gap: 3%;
}
/* .bl-main .footer-nav ul li{
    border-top:  #ddd solid 1px;
}
.bl-main .footer-nav ul li:nth-of-type(4n) ,
.bl-main .footer-nav ul li:last-of-type{
    border-bottom: #ddd solid 1px;
} */
.bl-main .footer-nav ul li a {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  text-decoration: none;
}
.bl-main .footer-nav ul li a::after {
  color: rgba(0, 117, 194, 1);
  content: "\f105";
  font-family: "FontAwesome";
  padding: 0 0 0 0.5rem;
}

/*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/
#footer #footer-sub {
  align-items: center;
  background-color: rgba(0, 117, 194, 1);
  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: 0.875em;
  padding: 0.75rem;
  text-align: left;
}
/* 職員専用リンク */
#staffonly {
  padding-right: 2.5rem;
}
#staffonly a {
  align-items: center;
  background-color: rgba(56, 101, 128, 0.5);
  color: #fff;
  display: flex;
  line-height: 100%;
  padding: 0.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 0.5rem 0 0;
  width: 1.25rem;
}
#staffonly a:hover {
  background-color: rgba(56, 101, 128, 1);
}
/* ページトップ */
#pagetop {
  align-items: center;
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 117, 194, 1);
  z-index: 100;
}
#pagetop a {
  background-color: rgba(255, 255, 255, 0);
  color: rgba(255, 255, 255, 1);
  padding: 0.6rem 1rem;
}
#pagetop a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

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

@media (max-width: 1366px) {
  /* ヘッダ header id="header" #header
---------------------------------------------------- */
  /*グローバルナビゲーション*/
  #menu ul {
    width: 100%;
  }
}

@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.tel span.hidden {
    display: none;
  }

  /*---------------------------------------------------- */
  /*グローバルナビゲーション*/
  #menu ul li a {
    font-size: 0.875rem;
  }

  /* コンテナ div id="container" #container
---------------------------------------------------- */
  /*メインコンテンツ - サブヘッダ*/
  #sub-header {
  }
  #sub-header .sub-header-wrap {
    width: 90%;
  }
  #container {
    margin: 2em 2%;
    width: 96%;
    border-radius: 2em;
  }
  /*メインコンテンツ - メインカラム*/
  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: 1024px) {
  /* ヘッダ header id="header" #header
---------------------------------------------------- */
  #header {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
    margin: 0;
  }
  #header::after {
    background-size: auto 100%;
    height: 62px;
  }
  /*ヘッダコンテンツ（サイトタイトル：#sitetitle / 住所：address / 各種コンテンツリンクボタン：.cont-btn）*/
  #header-contents {
    padding: 0.5rem;
  }

  /*ヘッダコンテンツ - サイトタイトル*/
  #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 {
    background: rgba(44, 169, 225, 0.1);
    /*display: flex;*/
    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: 0.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 0.25rem;
  }
  #sp-header-contents .translate a span {
    margin: 0 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: 0.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;
  }
  /*グローバルナビゲーション - 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: 1em;
    text-align: center;
  }
  #menu.toggled .sp-menu-contents address,
  #menu.toggled .sp-menu-contents ul.cont-btn {
    width: 100%;
  }
  /*ナビゲーション内コンテンツ - 住所・電話番号*/
  #menu.toggled .sp-menu-contents address {
    font-size: 0.875rem;
    text-align: center;
  }
  #menu.toggled .sp-menu-contents address p {
    margin: 0.5rem;
  }
  #menu.toggled .sp-menu-contents address .facility_zip::before {
    content: "〒";
    display: inline;
    padding: 0 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 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: 0.3s;
  }
  #menu.toggled .sp-menu-contents .cont-btn li.sns a:hover img {
    opacity: 0.5;
  }
  /*お問い合わせボタン*/
  #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry {
    display: none;
    /* width: 100%; */
  }
  /* #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a {
    align-items: center;
    background-color: rgba(44, 169, 225, 0);
    border: rgba(0, 117, 194, 1) solid 1px;
    color: rgba(0, 117, 194, 1);
    display: flex;
    font-size: 0.875rem;
    justify-content: space-around;
    margin: 1rem auto;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: 0.3s;
  }
  #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a:hover {
    background-color: rgba(44, 169, 225, 0.15);
  }
  #menu.toggled .sp-menu-contents .cont-btn li.link-inquiry a::before {
    background: url("../images/common/ico_inquiry.svg") center no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 1rem;
    margin: 0 0.25rem 0 0;
    width: 1rem;
  } */

  /*グローバルナビゲーションメニュー*/
  #menu ul#menu-header,
  #menu.toggled ul#menu-header {
    background-color: transparent;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0 1em;
    position: relative;
    left: 0;
    top: 0;
  }
  #menu ul#menu-header li,
  #menu.toggled ul#menu-header li {
    margin: 0 0 1em;
    padding: 1rem;
    width: 30%;
    border: #ccc solid 1px;
  }
  #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: left;
    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(44, 169, 225, 1);
  }
  #menu.toggled ul#menu-header li a::before {
    content: "\e5df";
    font-family: "Material Icons";
    padding: 0 0.25em 0 0;
  }
  #menu.toggled ul#menu-header li a::after {
    display: none;
  }
  /*SP用グローバルナビハンバーガーボタン*/
  #menu .menu-toggle {
    background: none;
    border: 0;
    color: rgba(44, 169, 225, 1);
    display: block;
    height: 2.4em;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0.5em;
    top: calc(100vh + 0.5em);
    text-align: center;
    transition: unset;
  }
  #menu .menu-toggle:hover,
  #menu .menu-toggle:focus {
    opacity: 0.5;
    transition: 0.3s;
  }
  #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: 0.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 0.5rem 0 0;
  }
}
@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;
  }

  /*グローバルナビゲーション*/
  #menu ul#menu-header li,
  #menu.toggled ul#menu-header li {
    width: calc(50% - 2rem);
	  background-color: #fff;
  }
  #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: 2rem 0;
  }
  #container {
    margin: 1.5em auto;
    width: 100%;
    /* padding: 2em; */
    width: 90%;
  }
  /*メインコンテンツ - メインカラム*/
  main.content {
    width: 100%;
  }
  /*メインコンテンツ - メインカラム - 固定ページ最上の親ページ　メインカラム100%*/
  body.page-parent main.content {
    /*親（body.page-parent）の場合メインカラム100%*/
    /* padding: 2em; */
    width: 100%;
    margin: 0 auto;
  }
  /*メインコンテンツ - メインカラム - カスタム投稿タイプ（診療科・部門 / 採用情報）メインカラム100%*/
  body.post-type-archive-section main.content,
  body.tax-section-category main.content,
  body.post-type-archive-recruit main.content {
    padding: 1em;
  }
  /*メインコンテンツ - メインカラム - 固定ページ最上の親ページのみメインカラム100%*/
  body.page-parent.page-child main.content {
    /*子ページを持つ親（body.page-parent.page-child）の場合メインカラム75%*/
    width: 100%;
  }
  /*メインコンテンツ - サイドバー*/
  aside#sidebar {
    padding: 0.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;
  } */
  /* btnリンク群 */
  .bl-aside .address > dl > .btn ul {
    justify-content: center;
  }
  /* フッターサブナビ */
  .footer-sub-nav ul {
    display: block;
  }

  .footer-sub-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem 0 0 0;
  }
  .footer-sub-nav ul li {
    border-bottom: none;
    border-top: #ddd solid 1px;
    border-right: #ddd solid 1px;
    padding: 0;
    width: 50%;
  }
  .footer-sub-nav ul li:nth-child(2n) {
    border-right: #ddd solid 0px;
  }
  .footer-sub-nav ul li:nth-last-child(2),
  .footer-sub-nav ul li:last-child {
    border-bottom: #ddd solid 1px;
  }
  .footer-sub-nav ul li a {
    display: block;
    padding: 1rem 0.5rem;
  }
  /*フッタメイン - main（フッターメインナビ）*/
  #footer-main .bl-main {
    display: none;
  }
	#footer #footer-sub {
		display: block;
	}
	.footer-sub-nav ul {
		margin-right: 0px;
		padding: 0 0 0 0;
	}
	.bl-aside .address > dl > dd {
		margin-bottom: 20px;
	}

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

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

  /* コンテナ 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;
  }

  #container {
    padding: 0;
  }
  /*メインコンテンツ - パンくずナビ*/
  .breadcrumbs {
    font-size: 0.875em;
  }

  body.page-parent main.content {
    padding: 1em;
    width: 100%;
    margin: 0 auto;
    border-radius: 1em;
  }

  main.content {
    padding: 1em;
    width: 90%;
    margin: 0 auto;
    border-radius: 1em;
  }

  /* サイトサブナビ 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 0.5rem 0 0;
  }

  /* フッタ footer id="footer" #footer
---------------------------------------------------- */
  /*フッタサブ（コピーライト・職員専用リンク・ページトップ）*/
  /* コピーライト */
  #copyright,
  #copyright a {
    border-bottom: rgba(255, 255, 255, 0.5) solid 1px;
    flex: auto;
    width: 100%;
  }
  /* 職員専用リンク */
  #staffonly {
    border-right: rgba(255, 255, 255, 0.5) solid 1px;
    flex: 1;
  }
  #staffonly a,
  #staffonly a:hover {
    background-color: rgba(56, 101, 128, 0);
  }
	.gt_white_content.notranslate {
	width: 90%!important;
	max-width: 80%!important;
	position: fixed;
    top: 50%;
    left: 50%;

}

}
@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: 0.5rem 0 0 0;
    padding: 0 10%;
    width: 80%;
  }

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

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



