@charset "utf-8";
/* Generic Child-davinci : Base Style 
    サイト全体のスタイル
    -フォント読み込み
    -共通要素の上書き
    -共通要素
    -外枠 div id="wrapper" #wrapper
    -ヘッダ header id="header" #header
    -コンテナ div id="container" #container
    -フッタ footer id="footer" #footer
    -ログイン時表示「編集」ボタンスタイル .post-edit-link
        ※ログイン時のみ表示される記事の編集画面へのリンクボタン
*/
/*　Google Fonts 読込  IBM Plex Sans , Noto Sans JP , Noto Serif JP　*/
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
/*
    font-family: "IBM Plex Sans", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-family: "Noto Serif JP", serif;
*/
/* Color 
Blue : #3778ac rgba(55,120,172,1.00)
Red : #d5413d rgba(213,65,61,1.00)
*/

/* 共通要素の上書き
---------------------------------------------------- */
/*ダークモードの設定上書き*/
@media (prefers-color-scheme: dark) {
  body,
  #container {
    background: #fff;
  }
}
/*フォント設定上書き　デフォルトをNoto Sansに*/
body {
  color: #222;
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen-Sans,
    Ubuntu,
    Cantarell,
    "Helvetica Neue",
    sans-serif;
  /* overflow: hidden; */
}

/*テキスト選択時カラー*/
::selection {
  background: rgba(85, 158, 165, 0.35);
  color: #666;
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition: unset;
}
html {
  scroll-behavior: smooth;
}
body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
  height: 100%;
  width: 100%;
}
address,
cite,
var {
  font-style: normal;
}
pre,
code {
  font-family: inherit;
}
dd {
  margin-left: 0;
}
/*フォームスタイル上書き*/
textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="search"],
input[type="password"] {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 5px;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input,
textarea {
  background: #fff;
  border: #ddd solid 1px;
  border-radius: 5px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1em;
  margin: 0;
  outline: 0;
  padding: 0.5em;
}
input:focus,
textarea:focus {
  background-color: #f7f7f7;
  border: rgba(85, 158, 165, 0.5) solid 1px;
}
input[type="submit"],
button,
.button {
  background: rgba(15, 35, 80, 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;
}

/*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;
}
/*img（画像）右クリック禁止*/
img {
  pointer-events: none;
}
/*aリンク内のimg（画像）イベント許可*/
a img {
  pointer-events: auto;
}

/*a（ハイパーリンク）要素スタイル上書き*/
a {
  color: rgba(15, 35, 80, 1);
  transition: 0.3s;
}
a:hover {
  color: rgba(15, 35, 80, 1);
}
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;
}
#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;
  position: relative;
}

/* ヘッダ header id="header" #header
---------------------------------------------------- */
#header {
  /* background: rgba(55,120,172,.00);
    background: linear-gradient(180deg,rgba(55,120,172,1.00) 0%, rgba(55,120,172,00) 100%); */
  background-color: transparent;
  height: auto;
  margin: 0;
  /*position: fixed; */
  /*ヘッダ固定の指定を外す際はposition:relativeに変更し、header.php内の「ヘッダーの高さ分だけコンテンツを下げる」をコメントアウトし、
    ログイン時のアドミンバー表示調整（body.logged-in #header）もコメントアウトする
    （@media screen and (max-width: 782px)にもログイン時のアドミンバー表示調整の記述有）
    */
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}
/*ログイン時のアドミンバー表示調整*/
/*
body.logged-in #header {
        top: 32px;
}
*/
#header:after {
  display: none;
}
#header .header-wrap {
  padding: 1rem;
  position: relative;
  width: 100%;
}
/*ヘッダ - サイト説明文*/
#site-description {
  color: rgba(255, 255, 255, 1);
  font-size: 0.75rem;
  margin: 0;
  padding: 0 0 0.5rem;
}
/*ヘッダ - ヘッダコンテンツ（サイトタイトル・グローバルナビゲーション）*/
#header-contents {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}
/* - ヘッダコンテンツ：サイトタイトル*/
#site-title {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
}
#site-title h1,
#site-title a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}
#site-title a {
  color: rgba(255, 255, 255, 1);
  transition: 0.3s;
}
#site-title a:hover {
  color: rgba(0, 166, 186, 1);
}
#site-title a span {
  display: block;
  font-size: 0.875rem;
}
/* - ヘッダコンテンツ：グローバルナビゲーション*/
#menu {
  flex: 1;
  margin: 0;
  padding: 0;
  width: auto;
}
#menu div:first-of-type {
  float: none;
  width: auto;
}
/* - ヘッダコンテンツ：グローバルナビゲーション - SP用ハンバーガーボタン*/
#menu .menu-toggle {
  display: none;
}
/* - ヘッダコンテンツ：グローバルナビゲーション - メインメニュー*/
#menu ul {
  align-items: center;
  display: flex;
  font-size: inherit;
  justify-content: flex-end;
  margin: 0;
}
#menu ul li {
  align-items: center;
  display: flex;
  padding: 0.25em 1em;
}
#menu ul li a {
  align-items: center;
  color: rgba(255, 255, 255, 1);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  height: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-decoration: none;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  transition: 0.3s;
  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表示*/ {
  color: rgba(0, 166, 186, 1);
  text-decoration: none;
}

/* メインカラム 
---------------------------------------------------- */
/*メインカラム（下層ページのみ） - container-wrap （サブヘッダ・パンくず） */
.container-wrap {
  background-color: transparent;
  flex: 1;
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
/* container-wrap ：サブヘッダ */
#sub-header {
  align-items: center;
  background: #fff url("../images/common/bg_subheader.jpg") no-repeat center;
  background-size: cover;
  display: flex;
  height: 400px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
#sub-header .sub-header-title {
  color: rgba(255, 255, 255, 1);
  height: fit-content;
  text-align: center;
}
#sub-header .sub-header-title h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  text-align: left;
}
#sub-header .sub-header-title .slug {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 7vmax;
  font-style: italic;
  font-weight: 100;
}
/* container-wrap ：パンくず */
.breadcrumbs {
  background-color: rgba(51, 51, 51, 1);
  border-bottom: rgba(51, 51, 51, 1) solid 1px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.breadcrumbs .bradcrumbs-wrap {
  align-items: center;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0.5rem;
}
.breadcrumbs .bradcrumbs-wrap span {
  font-size: 0.875em;
  padding: 0 0.15rem;
}
.breadcrumbs .bradcrumbs-wrap span a {
  color: #fff;
}
.breadcrumbs .bradcrumbs-wrap .material-symbols-outlined {
  font-family: "Material Icons";
}
/*メインカラム - container （main・aside） */
#container {
  background-color: #fff;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 2rem;
  width: 1240px;
}
/*メインカラム - container （main・aside） */
#container.front-container {
  padding: 0;
}
/*メインカラム - container：main メインコンテンツ */
main.content {
  float: none;
  margin: 0 auto;
  padding: 0;
  width: 80%;
  z-index: 2;
}
/*メインカラム - container：main メインコンテンツ：お知らせの場合 */
#container:has(aside) main.content {
  margin: 0;
  padding: 0 0 0 3em;
  width: 75%;
}
/*メインカラム - container：aside サイドバー */
aside#sidebar {
  float: none;
}
/* - aside サイドバー （子ページリスト・ウィジェット）*/
aside#sidebar .child-page-box {
  margin: 0 0 3rem;
}
aside#sidebar .widget-box > li#side-page-link ul {
  margin: 0;
}
aside#sidebar .widget-box > li#side-page-link ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside#sidebar .child-page-box > ul,
aside#sidebar .widget-box > li#side-page-link ul {
  border-top: #ddd solid 1px;
}
aside#sidebar .child-page-box ul li a,
aside#sidebar .widget-box > li#side-page-link ul li a {
  align-items: center;
  background-color: #fff;
  color: #333;
  display: flex;
  padding: 1rem 0;
  text-decoration: none;
}
aside#sidebar .child-page-box ul li a:hover,
aside#sidebar .widget-box > li#side-page-link ul li a:hover {
  background-color: #f7f7f7;
  color: #666;
}
/*該当ページ滞在時*/
aside#sidebar .child-page-box ul li.current_page_item > a,
aside#sidebar .widget-box > li#side-page-link ul li.current_page_item > a {
  background-color: #f7f7f7;
  color: #666;
}
/* - aside サイドバー - 子ページリスト*/
/*第一階層*/
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 .child-page-box > ul > li > ul > li > ul > li ul {
  border-top: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li {
  border-bottom: #ddd dotted 1px;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li:last-child {
  border-bottom: none;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li a {
  padding: 0.75rem 0 0.75rem 3rem;
}
aside#sidebar .child-page-box > ul > li > ul > li > ul > li ul li a::before {
  display: none;
}
/* - aside サイドバー - ウィジェット*/
/* - aside サイドバー - ウィジェット：ウィジェットタイトル*/
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: rgba(0, 166, 186, 1);
  content: "";
  display: block;
  width: 30px;
  height: 1px;
}
/* - aside サイドバー - ウィジェット：ウィジェットリスト*/
aside#sidebar .widget-box li.widget-container nav ul {
  margin: 0;
  padding: 0;
}
aside#sidebar .widget-box li.widget-container nav ul li {
  border-bottom: #ddd solid 1px;
  list-style: none;
  line-height: normal;
  margin: 0;
}
aside#sidebar .widget-box li.widget-container nav ul li a {
  align-items: center;
  background-color: #fff;
  color: #333;
  display: flex;
  padding: 1rem 0;
  text-decoration: none;
}
aside#sidebar .widget-box li.widget-container nav ul li a:hover {
  background-color: #f7f7f7;
  color: #666;
}
aside#sidebar .widget-box li.widget-container nav ul li a::before {
  content: "\e5df";
  font-family: "Material Icons";
  padding: 0 0.5rem 0 0;
}
/* - aside サイドバー - ウィジェット：ウィジェットリスト - セレクト*/
aside#sidebar .widget-box li.widget-container:has(select) {
  position: relative;
}
aside#sidebar .widget-box li.widget-container:has(select)::after {
  color: #ddd;
  content: "\f078";
  display: inline;
  font-family: FontAwesome;
  position: absolute;
  bottom: 0.75rem;
  right: 0.5em;
  pointer-events: none; /* 矢印クリックを無効にする */
}
aside#sidebar .widget-box li.widget-container > select {
  appearance: none;
  border: #ddd solid 1px;
  border-radius: 5px;
  font-size: 1em;
  height: auto;
  margin: 0;
  max-width: 100% !important;
  padding: 0.5em 2em 0.5em 0.5em;
  width: 100%;
}

/* お問い合わせ #inquiry
---------------------------------------------------- */
section#inquiry {
  padding: 0;
  margin: 0;
  position: relative;
}

/* section#inquiry::before {
  content: "";
  background: url(../images/front/bg/bg-blue.png) no-repeat;
  background-size: cover;
  padding: 50px 0 0;
  display: block;
  height: 400%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 0%;
  z-index: -1;
}

section#inquiry::after {
  content: "";
  background: url(../images/front/bg/bg-green.png) no-repeat;
  background-size: cover;
  padding: 50px 0 0;
  display: block;
  height: 660%;
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 0%;
  z-index: -1;
} */

section#inquiry .section-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  width: 100%;
  background-color: rgba(15, 35, 80, 0.7);
}

#inquiry .section-wrap > div {
  align-items: flex-end;
  display: flex;
  margin: 0 0;
  padding: 60px 0;
  position: relative;
  width: 50%;
}

#inquiry .section-wrap > div > div {
  align-items: end;
  display: block;
  justify-content: center;
  width: 100%;
}

#inquiry .section-wrap header {
  padding: 1rem;
  text-align: center;
  width: 100%;
}

#inquiry .section-wrap header h2 {
  font-weight: normal;
  padding: 0 0 1rem;
  color: rgba(245, 245, 245, 1);
}

#inquiry .section-wrap header p {
  font-weight: normal;
  color: rgba(245, 245, 245, 1);
}

#inquiry .section-wrap header p span {
  display: block;
}

#inquiry .section-wrap > div#patient div .btn.more-link a::after {
  background: url(../images/common/ico_arrow_inquiry.svg) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2.5rem;
  margin: 0 0 0 1rem;
  width: 2.5rem;
}

#inquiry .section-wrap > div#workers div .btn.more-link a::after {
  background: url(../images/common/ico_arrow_color.svg) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2.5rem;
  margin: 0 0 0 1rem;
  width: 2.5rem;
}

p.btn.more-link a {
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  border: rgba(238, 238, 238, 1) solid 1px;
  border-radius: 50px;
  color: rgba(51, 51, 51, 1);
  display: inline-flex;
  justify-content: center;
  margin: 0 auto;
  line-height: normal;
  padding: 0.5em 0.5em 0.5em 1.5em;
  text-decoration: none;
}

#inquiry .section-wrap > div > div .btn.more-link {
  margin: 0;
  display: flex;
}

#inquiry .section-wrap > div > div .btn.more-link a {
}

/* フッタ footer id="footer" #footer
---------------------------------------------------- */
#footer {
  background-color: rgba(55, 120, 172, 0.15);
  border-top: rgba(55, 120, 172, 0.25) solid 1px;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}
#footer p {
  margin: 0;
  padding: 0;
}
/*フッタ - フッタアクセス（施設情報・Googleマップ）*/
#footer #footer-access {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1240px;
}
/*フッタ - フッタアクセス：施設情報*/
#footer-access .access {
  padding: 1rem;
  width: 40%;
}
#footer-access .access dt {
  align-items: center;
  display: flex;
  margin: 0 0 1rem;
}
#footer-access .access dt::before {
  background: url("../images/common/footer/corp_ico.png") no-repeat center;
  background-size: contain;
  content: "";
  display: block;
  height: 50px;
  margin: 0 1rem 0 0;
  width: 50px;
}
#footer-access .access dt a {
  text-decoration: none;
}
#footer-access .access dt span {
  display: block;
}
#footer-access .access dt span.corporation-name {
  font-size: 0.875rem;
}
#footer-access .access dt span.facility-name {
  font-size: 1.25rem;
}
#footer-access .access dt span.facility-name {
  font-size: 1.25rem;
}
#footer-access .access dd ul li {
  padding: 0.25rem 0;
}
#footer-access .access dd ul li::before {
  content: "";
  color: rgba(15, 35, 80, 1);
  font-family: FontAwesome;
  padding: 0 0.25rem 0 0;
}
#footer-access .access dd ul li.address::before {
  content: "\f041";
}
#footer-access .access dd ul li.phone::before {
  content: "\f095";
}
#footer-access .access dd ul li.time::before {
  content: "\f017";
}
/*フッタ - フッタアクセス：Googleマップ*/
#footer-access .map {
  width: 60%;
}
#footer-access .map iframe {
  height: 200px;
  vertical-align: bottom;
  width: 100%;
}
/*フッタ - フッタボトム（コピーライト・フッターナビ・ページトップ）*/
#footer #footer-bottom {
  align-items: center;
  background-color: rgba(15, 35, 80, 1);
  display: flex;
  justify-content: space-between;
  margin: 0;
  width: 100%;
}
/* - フッタボトム：コピーライト*/
#copyright {
}
#copyright,
#copyright a {
  color: #fff;
  font-size: 0.875em;
  text-align: left;
}
/* - フッタボトム：フッターナビ*/
#footer-nav {
  flex: 1;
}
#footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 1rem 0;
}
#footer-nav .menu li {
  border-right: #fff solid 1px;
  line-height: 100%;
  padding: 0 1rem;
}
#footer-nav .menu li:last-child {
  border-right: none;
}
#footer-nav .menu li a {
  color: #fff;
  text-decoration: none;
}
#footer-nav .menu li a:hover {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
/* - フッタボトム：ページトップ*/
#pagetop {
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  border-left: #fff solid 1px;
  display: flex;
}
#pagetop:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
#pagetop a {
  color: rgba(255, 255, 255, 1);
  padding: 1rem 1.25rem;
}
#pagetop a:hover {
  color: rgba(255, 255, 255, 0.75);
}

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

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

@media (max-width: 1260px) {
  /* ヘッダ header id="header" #header
---------------------------------------------------- */
  #menu ul li a {
    font-size: 1rem;
  }

  /* メインカラム 
---------------------------------------------------- */
  /*メインカラム（下層ページのみ） - container-wrap （サブヘッダ・パンくず） */
  /* container-wrap ：サブヘッダ */
  #sub-header {
    height: 300px;
  }
  /*メインカラム - container （main・aside） */
  #container {
    width: 100%;
  }
  /*メインカラム - container：main メインコンテンツ：お知らせの場合 */
  #container:has(aside) main.content {
    margin: 0;
    padding: 0 2% 2em 0;
    width: 75%;
  }
  /*メインカラム - container：aside サイドバー */
  aside#sidebar {
    width: 25%;
  }

  /* フッタ footer id="footer" #footer
---------------------------------------------------- */
  /*フッタ - フッタアクセス（施設情報・Googleマップ）*/
  #footer #footer-access {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  /* ヘッダ header id="header" #header
---------------------------------------------------- */
  /*ヘッダ - サイト説明文*/
  #site-description {
    display: none;
  }
  /* - ヘッダコンテンツ：サイトタイトル*/
  #site-title h1,
  #site-title a {
    font-size: 1.25rem;
    text-align: left;
  }
  #site-title a {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #site-title a span {
    display: inline;
    padding: 0 0.25rem 0 0;
  }
  /* - ヘッダコンテンツ：グローバルナビゲーション*/
  #menu {
    background-color: rgba(0, 0, 0, 0.9);
    display: block;
    flex: none;
    height: 100vh;
    padding: 1rem;
    position: absolute;
    left: 0;
    top: -100vh;
    transition: 0.15s;
    width: 100%;
    z-index: 10000;
  }
  #menu div:first-of-type {
    display: block;
    margin: 3.8em 0 0 0;
  }
  /* - ヘッダコンテンツ：グローバルナビゲーション - OPEN時*/
  #menu.toggled {
    position: fixed;
    right: 0;
    top: 0;
  }
  /* - ヘッダコンテンツ：グローバルナビゲーション - OPEN時・ログイン中*/
  body.logged-in #menu.toggled {
    top: 32px;
  }
  /* - ヘッダコンテンツ：グローバルナビゲーション - SP用ハンバーガーボタン*/
  #menu .menu-toggle {
    background: none;
    border: 0;
    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 {
    color: rgba(15, 35, 80, 1);
  }
  #menu .menu-icon {
    font-size: 1em;
    height: 100%;
  }
  #menu .menu-icon::before {
    color: #fff;
    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: #fff;
    content: "\e5cd";
    font-family: "Material Icons";
  }
  /* - ヘッダコンテンツ：グローバルナビゲーション - メインメニュー*/
  #menu.toggled ul {
    border: none;
    flex-direction: column;
    margin: 0;
    padding: 0;
    position: relative;
    left: 0;
    top: 0;
  }
  #menu ul li,
  #menu.toggled ul li {
    border-bottom: #fff solid 1px;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #menu ul li a,
  #menu.toggled ul li a {
    background-color: transparent;
    color: #fff;
    display: block;
    font-size: 1rem;
    height: 100%;
    line-height: auto;
    margin: 0;
    padding: 2rem 1rem;
    text-align: left;
    width: 100%;
  }
  #menu.toggled ul li a:hover,
    #menu.toggled ul li a:focus ,
    #menu.toggled ul li.current-menu-item a , /*メニューページ current表示*/
    #menu.toggled ul li.current-page-ancestor a /*メニューの子ページ current表示*/ {
    background-color: rgba(255, 255, 255, 0.25);
  }
  #menu.toggled ul li a::before {
    content: "\e5df";
    font-family: "Material Icons";
    padding: 0 0.25em 0 0;
  }
  #menu.toggled ul li a::after {
    display: none;
  }

  /* フッタ footer id="footer" #footer
---------------------------------------------------- */
  /* - フッタボトム：コピーライト*/
  #copyright {
  }
  #copyright,
  #copyright a {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 782px) {
  html #wpadminbar {
    position: fixed;
  }
  /*ログイン時のアドミンバー表示調整*/
  /*
    body.logged-in #header {
            top: 46px;
    }
    */
  #wp-admin-bar-my-account {
    line-height: 80%;
  }
  /* ヘッダ header id="header" #header
---------------------------------------------------- */
  /* - ヘッダコンテンツ：グローバルナビゲーション - OPEN時・ログイン中*/
  body.logged-in #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;
  }

  /* メインカラム 
---------------------------------------------------- */
  /*メインカラム（下層ページのみ） - container-wrap （サブヘッダ・パンくず） */
  /* container-wrap ：サブヘッダ */
  #sub-header {
    height: 200px;
  }
  /*メインカラム - container （main・aside） */
  #container {
    flex-direction: column;
    padding: 1rem;
  }
  /*メインカラム - container：main メインコンテンツ */
  main.content {
    width: 100%;
  }
  /*メインカラム - container：main メインコンテンツ：お知らせの場合 */
  #container:has(aside) main.content {
    padding: 0;
    width: 100%;
  }
  /*メインカラム - container：aside サイドバー */
  aside#sidebar {
    border-top: rgba(15, 35, 80, 1) double 3px;
    margin: 3rem 0 0 0;
    padding: 3rem 0 0;
    width: 100%;
  }
  /* - aside サイドバー （子ページリスト・ウィジェット）*/
  aside#sidebar .child-page-box {
    margin: 0 0 3rem;
  }

  /* #inquiry --- */
  section#inquiry::before {
    height: 640%;
  }
  section#inquiry::after {
    height: 760%;
  }

  #inquiry .section-wrap > div {
    padding: 1rem 0 3rem;
  }
  #inquiry .section-wrap header {
    padding: 3rem 0 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  #inquiry .section-wrap header p {
    display: none;
  }

  /* フッタ footer id="footer" #footer
---------------------------------------------------- */
  /*フッタ - フッタアクセス（施設情報・Googleマップ）*/
  #footer #footer-access {
    flex-wrap: wrap;
  }
  /*フッタ - フッタアクセス：施設情報*/
  #footer-access .access {
    width: 100%;
  }
  #footer-access .access dt {
  }
  #footer-access .access dd ul li {
    text-align: left;
  }
  /*フッタ - フッタアクセス：Googleマップ*/
  #footer-access .map {
    width: 100%;
  }
  /*フッタ - フッタボトム（コピーライト・フッターナビ・ページトップ）*/
  #footer #footer-bottom {
    flex-wrap: wrap;
  }
  /* - フッタボトム：コピーライト*/
  #copyright {
    order: 2;
  }
  /* - フッタボトム：フッターナビ*/
  #footer-nav {
    flex: auto;
    order: 1;
    width: 100%;
  }
  #footer-nav .menu {
    border-top: rgba(255, 255, 255, 1) solid 1px;
    justify-content: flex-start;
    padding: 0;
    /* background-color: #FFF; */
    width: 100%;
  }
  #footer-nav .menu li {
    border-bottom: rgba(255, 255, 255, 1) solid 1px;
    border-right: rgba(255, 255, 255, 1) solid 1px;
    padding: 0.5rem;
    width: 50%;
  }
  #footer-nav .menu li:nth-child(2n) {
    border-right: none;
  }
  #footer-nav .menu li a,
  #footer-nav .menu li a:hover {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 1);
  }
  /* - フッタボトム：ページトップ*/
  #pagetop {
    order: 3;
    width: fit-content;
  }
  #pagetop a {
    display: block;
    text-decoration: none;
  }
}

@media (max-width: 767px) {
}
@media (max-width: 576px) {
  /* お問い合わせ section id="inquiry" #inquiry 
---------------------------------------------------- */
  /* section#inquiry::before {
    height: 700%;
  }
  section#inquiry::after {
    height: 880%;
  } */
  section#inquiry .section-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    border-top: #ddd dotted 1px;
  }
  #inquiry .section-wrap > div {
    padding: 1rem 0 0;
  }

  #inquiry .section-wrap header h2 {
    color: rgba(15, 35, 80, 1);
    padding: 0 0 2rem;
  }

  #inquiry .section-wrap > div#patient div .btn.more-link a::after {
    display: none;
  }

  #inquiry .section-wrap > div#workers div .btn.more-link a::after {
    display: none;
  }
  #inquiry .section-wrap > div#patient p.btn.more-link a {
    background: linear-gradient(
      90deg,
      rgba(0, 166, 186, 1),
      rgba(91, 123, 186, 1)
    );
  }
  #inquiry .section-wrap > div#workers p.btn.more-link a {
    background: linear-gradient(
      90deg,
      rgba(0, 88, 225, 1),
      rgba(15, 35, 80, 1)
    );
  }

  #inquiry p.btn.more-link a {
    width: 100%;
    color: rgba(255, 255, 255, 1);
    border: rgba(238, 238, 238, 1) solid 0;
    border-radius: 0;
    padding: 1em;
  }

  #inquiry .section-wrap > div > div .btn.more-link a::after {
    background: url(../images/common/ico_arrow_inquiry.svg) no-repeat center;
    background-size: contain;
    content: "";
    display: inline-block;
    height: 2.5rem;
    margin: 0 0 0 1rem;
    width: 2.5rem;
    display: none;
  }
}
@media (max-width: 400px) {
  #inquiry .section-wrap > div {
    /* align-items: flex-end; */
    display: block;
    margin: 0 0;
    padding: 0;
    /* position: relative; */
    width: 100%;
  }
}
@media (max-width: 350px) {
  /* メインカラム 
---------------------------------------------------- */
  /*メインカラム（下層ページのみ） - container-wrap （サブヘッダ・パンくず） */
  /* container-wrap ：パンくず */
  .breadcrumbs {
    display: none;
  }
}
