@charset "utf-8";

/* Reset
----------------------------------------------------------------- */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  margin: 0;
}
main {
  display: block;
}
p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
abbr[title] {
  text-decoration: underline dotted;
}
b, strong {
  font-weight: bolder;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
svg, img, embed, object, iframe {
  vertical-align: bottom;
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}
button, [type="button"], [type="reset"], [type="submit"] {
  cursor: pointer;
}
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
option {
  padding: 0;
}
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="search"] {
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-color: inherit;
  border-collapse: collapse;
}
caption {
  text-align: left;
}
td, th {
  vertical-align: top;
  padding: 0;
}
th {
  text-align: left;
  font-weight: bold;
}


/* Base
----------------------------------------------------------------- */
html {
  height: 100%;
  line-height: 1.75;
  scroll-behavior: smooth;
  scroll-padding-top: 114px;
}
body {
  position: relative;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #0E2846;
  font-weight: 400;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #0E2846;
  text-decoration: none;
  transition: all 0.2s ease;
}
*:focus {
  outline: none;
}
@media (min-width: 768px) {
  html {
    scroll-padding-top: 74px;
  }
  a:hover {
    opacity: 0.8;
  }
  a img {
    transition: opacity 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
  a[href^='tel'] {
    pointer-events: none;
    cursor: text;
  }
  .sp-only {
    display: none;
  }
}
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 148px;
  }
}

/*--------------------------------------------------
  ヘッダー
--------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: 114px;
  background: #FFF;
}
.header__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  height: 100%;
  padding: 1rem 1.25rem;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  height: 45px;
  width: auto;
}

/* ナビゲーション */
.header__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  opacity: 0;
  overflow-y: auto;
  transition: all 0.2s ease;
  transform: translate(100%, 0);
  width: 100%;
  padding: 90px 64px;
  background: linear-gradient(90deg, #E6EDF4 10%, #FFFFFF 50%, #FFFFFF 100%);
}
.header__nav.active {
  opacity: 1;
  transform: translate(0, 0);
}
@media (min-width: 768px) {
  .header__nav {
    max-width: 393px;
  }
}

/* ドロワーメニューコンテンツ */
.header__nav-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

/* タブレット版ドロワーメニュー（最大393px） */
@media (min-width: 768px) {
  .header__nav-content {
    max-width: 393px;
  }
}

.header__nav.active .header__nav-content {
  transform: translateX(0);
}

/* グローバルメニュー */
.header__global {
  width: 100%;
  max-width: 277px;
  margin: 0 auto;
}
.header__global-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.header__global-item {
  flex: 1;
  position: relative;
}
.header__global-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.header__global-link::after {
  width: 27px;
  height: 27px;
  margin-left: auto;
  border-radius: 50%;
  background: #E6EDF4 url(../img/icon-arrow-blue.svg) no-repeat center center / contain;
  content: '';
}
.header__global-text {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.33
}
.header__global-text span {
  display: block;
  font-size: 1rem;
}
.header__global-icon {
  width: 44px;
  height: 44px;
  background: #FFF;
  border-radius: 50%;
}

/* ヘッダーメニュー */
.header__menu {
  width: 100%;
  max-width: 233px;
  margin: 32px auto 0;
}
.header__menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.header__menu-item {
  flex-shrink: 0;
}
.header__menu-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.05em;
}
.header__menu-item.-recruit {
  margin-top: 24px;
}
.header__menu-item.-recruit .header__menu-link {
  justify-content: center;
  background: #D5EBFC;
  color: #1E64AA;
}
.header__menu-item.-contact {
  margin-top: 16px;
}
.header__menu-item.-contact .header__menu-link {
  justify-content: center;
  background: #1E64AA;
  color: #F8FAFD;
}
.header__menu-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* TEL表示 */
.header__tel a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 32px;
}
.header__tel-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.header__tel-number {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: #000000;
}
@media (min-width: 768px) {
  .header__tel-icon {
    width: 24px;
    height: 24px;
  }
  .header__tel-number {
    font-size: 1.75rem;
  }
}

/* Instagram */
.header__instagram {
  position: absolute;
  top: 20px;
  left: 20px;
}
.header__instagram-link {
  display: block;
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}
.header__instagram-img {
  width: 100%;
  height: 100%;
}

/* ハンバーガーメニューボタン */
.header__menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 102;
  width: 68px;
  height: 68px;
  padding: 8px 12px;
  border: 0;
  color: #0073C0;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__menu-line {
  width: 28px;
  height: 28px;
  position: relative;
}
.header__menu-line span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.2s ease;
}
.header__menu-line span::before,
.header__menu-line span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: all 0.2s ease;
}
.header__menu-line span::before {
  top: -6px;
}
.header__menu-line span::after {
  top: 6px;
}
.header__menu-btn.active .header__menu-line span {
  background: transparent;
}
.header__menu-btn.active .header__menu-line span::before {
  top: 0;
  transform: rotate(45deg);
}
.header__menu-btn.active .header__menu-line span::after {
  top: 0;
  transform: rotate(-45deg);
}
.header__menu-label {
  white-space: nowrap;
}
.header__menu-label-inner {
  transition: all 0.3s ease;
}
.header__menu-label-inner.-close {
  display: none;
}
.header__menu-btn.active .header__menu-label-inner.-open {
  display: none;
}
.header__menu-btn.active .header__menu-label-inner.-close {
  display: inline;
}

/* タブレット版スタイル */
@media (min-width: 768px) {
  .header {
    height: 74px;
  }
  .header__inner {
    flex-direction: row;
    align-items: flex-end;
    gap: 14px;
    padding: 14px 3.125vw;
  }
  .header__instagram {
    top: 20px;
    right: 104px;
    left: inherit;
  }
}

/* PC版スタイル */
@media (min-width: 1024px) {
  .header {
    height: 148px;
  }
  .header__inner {
    gap: 24px;
    max-width: 1366px;
    margin: 0 auto;
    height: auto;
    padding: 16px 40px;
  }
  .header__menu-btn {
    display: none;
  }
  .header__nav {
    opacity: 1;
    overflow: visible;
    bottom: inherit;
    z-index: auto;
    position: absolute;
    max-width: inherit;
    padding: 0;
    background: transparent;
    transform: none;
  }
  .header__global {
    display: block;
    position: absolute;
    top: 74px;
    max-width: inherit;
    height: 74px;
    padding: 0 40px;
    background-color: #0073C0;
  }
  .header__global::before {
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background: #0073C0;
    z-index: -1;
    content: '';
  }
  .header__global-list {
    flex-direction: row;
    justify-content: center;
    gap: 0;
    height: 100%;
  }
  .header__global-item {
    flex: inherit;
    position: relative;
    padding: 9px 0;
  }
  .header__global-item::before {
    opacity: 0;
    position: absolute;
    top: calc(50% - 28px);
    left: 0;
    width: 100%;
    height: 56px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: opacity 0.2s ease;
    content: '';
  }
  .header__global-link {
    height: 100%;
    padding: 0 24px 0 12px;
    color: #FFF;
  }
  .header__global-link::before {
    position: absolute;
    top: calc(50% - 20px);
    left: 0;
    width: 1px;
    height: 40px;
    background: rgba(222, 229, 237, 0.36);
    content: '';
  }
  .header__global-link::after {
    display: none;
  }
  .header__global-item:last-child .header__global-link::after {
    display: block;
    position: absolute;
    top: calc(50% - 20px);
    right: 0;
    width: 1px;
    height: 40px;
    background: rgba(222, 229, 237, 0.36);
    content: '';
  }
  .header__global-icon {
    background: #E6EDF4;
  }
  .header__menu {
    position: absolute;
    top: 20px;
    right: 92px;
    max-width: 586px;
    margin: 0;
  }
  .header__menu-list {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
  }
  .header__menu-link {
    padding: 4px 0;
  }
  .header__menu-item.-recruit,
  .header__menu-item.-contact {
    margin-top: 0;
  }
  .header__menu-item.-recruit .header__menu-link,
  .header__menu-item.-contact .header__menu-link {
    min-width: 112px;
    padding: 4px 1em;
  }
  .header__instagram {
    right: 40px;
  }
}
@media (hover: hover) {
  .header__global-link:hover {
    opacity: 1;
  }
  .header__global-link:hover {
    color: #FFF;
  }
  .header__global-item:hover::before {
    opacity: 1;
  }
}

.header__menu-icon {
  width: 24px;
  height: 24px;
}
.header__menu-text {
  white-space: nowrap;
}

/* ドロップダウンメニュー */
.header__dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F2F6FA;
  border: 1px solid #1E64AA;
  border-top: 0;
  box-shadow: 0 3px 24px rgba(30, 100, 170, 0.16);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  min-width: 100%;
  padding: 20px;
  transform: translateY(-10px);
}
.header__global-item:hover .header__dropdown-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown-item {
  flex: 1;
}
.header__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #1E64AA;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}
.header__dropdown-link::after {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #FFF url(../img/icon-arrow-blue.svg) no-repeat center center / contain;
  content: '';
}
.header__dropdown-text {
  flex: 1;
}
.header__dropdown-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6EDF4;
  border-radius: 50%;
  border: 2px solid #1E64AA;
}
.header__dropdown-arrow-img {
  width: 12px;
  height: 12px;
  object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .header__dropdown-list {
    display: none;
  }
}

/* メインコンテンツの上部マージン（固定ヘッダー対応・モバイルファースト） */
.main {
  margin-top: 114px; /* モバイル版ヘッダーの高さ */
}
@media (min-width: 768px) {
  .main {
    margin-top: 74px; /* タブレット版ヘッダーの高さ */
  }
}
@media (min-width: 1024px) {
  .main {
    margin-top: 148px; /* PC版ヘッダーの高さ */
  }
}

/*--------------------------------------------------
  ヒーローセクション
--------------------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,#E6EDF4 10%, #FFFFFF 50%, #FFFFFF 100%);
}
@media screen and (max-width: 767px) {
  .hero {
    height: calc(100svh - 114px);
    padding: 5.08905vw;
  }
}
.hero__media {
  position: relative;
  height: 100%;
}
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: absolute;
  z-index: 1;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(50px) brightness(1.1) opacity(0.6);
  backdrop-filter: blur(50px) brightness(1.1) opacity(0.6);
}
.hero__title {
  color: #1E64AA;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .hero__content {
    right: 5.08905vw;
    bottom: 24.17308vw;
    left: 5.08905vw;
    padding: 6.10687vw 3.125vw;
  }
  .hero__title {
    font-size: min(4.58015vw, 1.125rem);
    white-space: nowrap;
  }
}

/* 重要なお知らせ */
.hero__notice {
  position: absolute;
  top: 5.08905vw;
  left: 5.08905vw;
  right: 5.08905vw;
  z-index: 1;
  padding: 14px;
  background: #FCEDED;
}
.hero__notice-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.hero__notice-badge,
.news__notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  background: #BC3838;
  border-radius: 20px;
  padding: 5px 10px;
  width: fit-content;
}
.hero__notice-badge::before,
.news__notice-badge::before {
  width: 13px;
  height: 13px;
  background: url(../img/icon-important.svg) no-repeat center center / contain;
  content: '';
}
.hero__notice-badge-text,
.news__notice-badge-text {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1;
}
.news__notice-badge-text {
  font-size: 0.8125rem;
}
.hero__notice-title,
.news__notice-title {
  color: #BC3838;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: underline;
}
.hero__notice-text,
.news__notice-text {
  color: #0E2846;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .hero__notice-link,
  .news__notice-link {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero__notice-text,
  .news__notice-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* タブレット */
@media (min-width: 768px) {
  .hero {
    min-height: 380px;
  }
  .hero__media {
    height: 94.40104vw;
  }
  .hero__content {
    right: 0;
    bottom: 190px;
    width: 560px;
    padding: 32px 34px;
  }
  .hero__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .hero__notice {
    top: inherit;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 2.60424vw;
  }
  .hero__notice-badge,
  .news__notice-badge {
    padding: 7px 16px 8px;
  }
  .hero__notice-badge-text,
  .news__notice-badge-text {
    font-size: 0.8125rem;
  }
  .hero__notice-title,
  .news__notice-title {
    font-size: 1rem;
  }
  .hero__notice-text,
  .news__notice-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    max-height: calc(1.5em * 1);
    margin-top: 4px;
    font-size: 0.875rem;
  }
  .news__notice-text {
    font-size: 0.9375rem;
  }
}

/* PC */
@media (min-width: 1024px) {
  .hero {
    height: 620px;
  }
  .hero__media {
    width: 950px;
    height: 620px;
    margin: 0 auto;
  }
  .hero__content {
    bottom: 100px;
    left: calc(50% - 40px);
    width: calc(50% + 40px);
    padding: 38px 40px;
  }
  .hero__title {
    font-size: 1.75rem;
    line-height: 1.6;
  }
  .hero__notice {
    padding: 18px 40px;
  }
  .hero__notice-inner {
  display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .hero__notice-badge,
  .news__notice-badge {
    width: 144px;
  }
  .hero__notice-badge-text,
  .news__notice-badge-text {
    font-size: 13px;
    line-height: 1;
  }
  .hero__notice-link,
  .news__notice-link {
    display: flex;
    align-items: center;
    gap: 24px;
    width: calc(100% - 168px);
  }
  .news__notice-link {
    width: 100%;
  }
  .hero__notice-title,
  .news__notice-title {
    white-space: nowrap;
  }
  .hero__notice-text,
  .news__notice-text {
    margin-top: 0;
  }
}

/*--------------------------------------------------
  バナーセクション
--------------------------------------------------*/
.banner {
  padding: 60px 0 50px;
}
.banner__inner {
  max-width: 293px;
  margin: 0 auto;
}
.banner__item:not(:first-child) {
  margin-top: 20px;
}
.banner__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 90px;
  border-radius: 4px;
  color: #FFF;
}
.banner__item.-outpatient .banner__link {
  background: url(../img/bnr-outpatient.jpg) no-repeat center center / cover;
}
.banner__item.-hospitalization .banner__link {
  background: url(../img/bnr-hospitalization.jpg) no-repeat center center / cover;
}
.banner__item.-rehabilitation .banner__link {
  background: url(../img/bnr-rehabilitation.jpg) no-repeat center center / cover;
}
.banner__link::after {
  position: absolute;
  top: calc(50% - 11.5px);
  right: 20px;
  width: 23px;
  height: 23px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  background: #FFF url(../img/icon-arrow-blue.svg) no-repeat center center / contain;
  content: '';
}
.banner__title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height:1.167;
  text-align: center;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.banner__title span {
  display: block;
}

@media (min-width: 768px) {
  .banner {
    padding: 50px 2.60416vw 100px;
  }
  .banner__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 920px;
  }
  .banner__item:not(:first-child) {
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .banner {
    padding: 50px 5.08905vw 100px;
  }
  .banner__inner {
    gap: 20px;
  }
}

/*--------------------------------------------------
  診療案内セクション
--------------------------------------------------*/
.home .information {
  background: url(../img/bg-01.jpg) no-repeat center bottom / auto 98.72773vw;
}
.information__inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .home .information {
    position: relative;
    background: none;
  }
  .home .information::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 400px;
    background: url(../img/bg-01.jpg) no-repeat center center / cover;
    content: '';
  }
}

/*--------------------------------------------------
  診療受付時間セクション
--------------------------------------------------*/
.consultation {
  padding: 0 8.77862vw;
}
.consultation__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
}
.consultation__title::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1E64AA url(../img/icon-clock.svg) no-repeat center center / contain;
}
.consultation__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 435px;
  margin: 1rem auto 0;
}
.consultation__notice-title {
  min-width:  4em;
  font-weight: 700;
  font-size: 0.9375rem;
}
.consultation__notice-text {
  font-size: 0.9375rem;
}
.consultation__notice-text span {
  font-weight: 500;
}
.consultation__table-inner {
  width: 100%;
  border-collapse: collapse;
}
.consultation__table-inner tr {
  border-bottom: 1px solid rgba(30, 100, 170, 0.12);
}
.consultation__table-inner thead th {
  width: 10%;
  color: #1E64AA;
  font-weight: 700;
  font-size: 0.75rem;
  text-align: center;
}
.consultation__table-inner thead th:first-child {
  width: 30%;
  color: #0E2846;
  font-size: 0.9375rem;
  text-align: left;
}
.consultation__table-inner tbody th {
  padding-right: 0.5em;
  font-weight: 500;
  font-size: 0.875rem;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  text-align: right;
  white-space: nowrap;
  vertical-align: middle;
}
.consultation__table-inner tbody td {
  height: 40px;
  text-align: center;
  vertical-align: middle;
}
.consultation__status {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #1E64AA;
}
.consultation__status--closed {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.consultation__status--closed::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(50% - 4.5px);
  width: 9px;
  height: 1px;
  background: #0E2846;
}

@media (min-width: 768px) {
  .consultation__title::before {
    width: 36px;
    height: 36px;
  }
  .consultation__content {
    gap: 24px;
    margin-top: 32px;
  }
  .consultation__notice {
    display: flex;
    gap: 20px;
  }
  .consultation__notice-title {
    font-size: 1.0625rem;
  }
  .consultation__notice-text {
    font-size: 1rem;
  }
  .consultation__table-inner thead th,
  .consultation__table-inner thead th:first-child {
    padding-bottom: 4px;
    font-size: 1rem;
  }
  .consultation__table-inner tbody th {
    padding-right: 1em;
    font-size: 1.0625rem;
  }
  .consultation__table-inner tbody td {
    height: 64px;
  }
  .consultation__status {
    width: 15px;
    height: 15px;
  }
}
@media (min-width: 1024px) {
  .home .information {
    position: relative;
    padding: 70px 0;
    background: none;
  }
  .home .information::after {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: -1;
    width: 50vw;
    height: 100%;
    background: url(../img/bg-01.jpg) no-repeat center bottom / cover;
    content: '';
  }
  .information__inner {
    display: flex;
    gap: 40px;
  }
  .consultation {
    max-width: 435px;
    padding: 0;
  }
  .consultation__inner {
    padding: 0 60px;
  }
  .consultation__title {
    justify-content: flex-start;
  }
}

/*--------------------------------------------------
  各種リンクセクション
--------------------------------------------------*/
.links {
  max-width: 298px;
  margin: 0 auto;
  padding: 60px 0;
}
.page .links {
  padding: 24px 0;
}
.links__grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 20px 0 32px;
  border-radius: 2px;
  box-shadow: 0 3px 40px rgba(201, 218, 223, 0.46);
  background: #FFF;
}
.page .links__grid {
  gap: 24px;
  box-shadow: none;
  background: transparent;
}
.page .add_bg .links__grid {
  padding: 0;
}
.links__item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 12px 32px;
}
.page .links__item {
  border-radius: 2px;
  box-shadow: 0 3px 40px rgba(201, 218, 223, 0.46);
  background: #FFF;
}
.links__item::after {
  position: absolute;
  bottom: 0;
  right: 1px;
  width: calc(100% - 32px);
  height: 2px;
  border-radius: 4px;
  background: #E7E7E7;
  content: '';
}
.page .links__item::after {
  display: none;
}
.links__icon {
  flex-shrink: 0;
  width: 30px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.links__icon-img {
  width: 30px;
  height: 40px;
  object-fit: contain;
}
.links__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.links__label {
  font-weight: 700;
  font-size: 1.0625rem;
}
.links__number {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  font-style: italic;
  font-family: "Roboto", sans-serif;
}
.links__text {
  font-size: 0.8125rem;
}
.links__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}
.links__arrow-img {
  width: 12px;
  height: 11px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .links {
    max-width: 600px;
  }
  .page .links:has(.links__grid.center) {
    max-width: 256px;
  }
  .links__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 70px 5.33333% 90px;
  }
  .page .links__grid.center {
    grid-template-columns: 1fr;
  }
  .links__item {
    padding: 22px 12px;
  }
  .links__item::after {
    right: 0;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .links {
    padding: 0;
  }
  .links__grid {
    gap: 24px;
    padding: 70px 32px 90px;
  }
  .page .links__grid {
    padding: 0 32px;
  }
  .links__icon {
    width: 30px;
    height: 40px;
  }
}

/*--------------------------------------------------
  お知らせセクション
--------------------------------------------------*/
.home .news {
  padding: 36px 6.361323vw;
}
.news__inner {
  max-width: 870px;
  margin: 0 auto;
}
.news__title {
  color: #1E64AA;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}
.news__filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 328px;
  margin: 24px auto;
}
.news__filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 24px) / 4);
  height: 24px;
  background: #F1F1F1;
  border: none;
  border-radius: 2px;
  color: #1E64AA;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.news__filter-btn.-active {
  background: #1E64AA;
  color: #F8FAFD;
}
.news__filter-btn:hover {
  opacity: 0.8;
}
.news__panel {
  display: none;
}
.news__panel.is-active {
  display: block;
}
.news__list {
  margin-bottom: 30px;
}
.news__item {
  border-bottom: 1px solid #BCC7F0;
}
.news__item:first-child {
  border-top: 1px solid #BCC7F0;
}
.news__item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  padding: 18px 34px 18px 4px;
}
.news__item-content::after {
  position: absolute;
  top: calc(50% - 9px);
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
.news__item-title {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-top: 10px;
}
.news__item-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.news__item-date {
  color: #0E2846;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
}
.news__item-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 119px;
  height: 21px;
  border-radius: 2px;
  color: #F8FAFD;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0 1em;
  text-align: center;
}
.news__item-category.-report {
  background: #43AF3E;
}
.news__item-category.-recruitment {
  background: #1E64AA;
}
.news__item-category.-information {
  background: #707070;
}
.news__more {
  padding-right: 6px;
  text-align: right;
}
.news__more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1E64AA;
  font-weight: 700;
  font-size: 0.9375rem;
}
.news__more-link::after {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
.news__more-link:hover {
  opacity: 0.8;
}
.news__more-arrow {
  width: 24px;
  height: 24px;
  background: #1E64AA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.news__more-arrow-img {
  width: 12px;
  height: 12px;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .home .news {
    padding: 60px 3.125vw;
  }
  .news__filter {
    gap: 12px;
    max-width: 412px;
    margin-bottom: 30px;
  }
  .news__filter-btn {
    width: calc((100% - 36px) / 4);
  }
  .news__list {
    max-width: 688px;
    margin: 0 auto;
  }
  .news__item-content {
    padding: 22px 86px 22px 4px;
  }
  .news__item-content::after {
    top: inherit;
    right: 32px;
    bottom: 28px;
  }
  .news__item-title {
    margin-top: 12px;
    font-size: 1rem;
  }
  .news__more {
    max-width: 688px;
    margin: 30px auto 0;
  }
}
@media (min-width: 1024px) {
  .news__inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    min-height: 312px;
  }
  .news__filter {
    position: absolute;
    top: 86px;
    left: 0;
    width: 94px;
    margin: 0;
  }
  .news__filter-btn {
    width: 100%;
  }
  .news__list {
    width: 688px;
    margin: 0;
  }
  .news__more {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

/*--------------------------------------------------
  当院についてセクション
--------------------------------------------------*/
.home .about {
  position: relative;
  padding: 40px 8.14249vw 0;
  overflow: hidden;
  background: url(../img/bg-02.jpg) no-repeat center top / auto calc(100% - 420px);
}
.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about__title {
  color: #1E64AA;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 36px;
}
.about__content {
  position: relative;
  z-index: 3;
}
.about__lead-text {
  font-weight: 500;
  font-size: min(3.79134vw, 0.9375rem);
  line-height: 1.6;;
}
.about__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 257px;
  margin: 24px auto 36px;
}
.about__card {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 72px;
  background: #FFFFFF;
  padding: 18px 16px;
  box-shadow: 0px 12px 40px 0px rgba(0, 102, 204, 0.12);
}
.about__card-icon {
  width: 38px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__card-icon-img {
  width: auto;
  height: 36px;
}
.about__card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0E2846;
  font-weight: 500;
  font-size: 1rem;
}
.about__card-title::before {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
@media (min-width: 768px) {
  .home .about {
    padding: 60px 20px;
    background-position: center center;
    background-size: cover;
  }
  .about__title {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }
  .about__lead-text {
    font-size: 1rem;
    text-align: center;
  }
  .about__text {
    margin-bottom: 40px;
  }
  .about__text-paragraph {
    font-size: 0.9375rem;
    text-align: center;
  }
  .about__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 540px;
  }
  .about__card {
    flex-direction: column;
    height: 137px;
  }
  .about__card-icon {
    width: 61px;
    height: 61px;
  }
  .about__card-icon-img {
    height: auto;
  }
}
@media (min-width: 1024px) {
  .home .about {
    padding-bottom: 74px;
  }
  .about__title {
    font-size: 2rem;
  }
  .about__lead-text {
    font-size: 1.25rem;
    line-height: 2;
  }
  .about__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1080px;
  }
}

.about__meal-text {
  font-weight: 500;
  font-size: min(3.79134vw, 0.9375rem);
  line-height: 1.6;
}
.about__meal-image {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about__meal-text {
    line-height: 2;
    text-align: center;
  }
  .about__meal-image {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
  }
  .about__meal-image img {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .about__meal-image {
    gap: 60px;
  }
  .about__meal-image img {
    width: calc(50% - 30px);
  }
}

/*--------------------------------------------------
  行事イベントセクション
--------------------------------------------------*/
.about__event {
  margin: 60px -8.14249vw 76px;
}
.about__event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 20px;
}
.about__event-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #FFF;
  padding: 24px 8.14249vw;
  box-shadow: 0px 12px 40px 0px rgba(201, 218, 223, 0.46);
}
.about__event-content {
  flex: 1;
  width: 100%;
}
.about__event-link,
.event-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about__event-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.about__event-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.-hospital .about__event-icon {
  background: #FFB74D;
}
.-staff .about__event-icon {
  background: #3DA9A9;
}
.about__event-title {
  color: #0E2846;
  font-weight: 700;
  font-size: 1.5rem;
}
.about__event-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.about__event-category,
.event-category {
  color: #1E64AA;
  font-weight: 700;
  font-size: 0.875rem;
}
.about__event-date,
.event-date {
  color: #0E2846;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.about__event-text,
.event-body {
  font-weight: 500;
  line-height: 2.12;
}
.about__event-image,
.event-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 55 / 34;
}
.about__event-img,
.event-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__event-more {
  width: 100%;
  text-align: right;
}
.about__event-more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1E64AA;
  font-weight: 700;
  font-size: 0.9375rem;
}
.about__event-more-link::after {
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
@media (min-width: 768px) {
  .about__event {
    margin: 100px 0 76px;
  }
  .about__event-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .about__event-item {
    align-items: center;
    padding: 0 11.00427% 32px;
  }
  .about__event-header {
    flex-direction: column;
    width: 100%;
    margin-top: -32px;
  }
  .about__event-title {
    font-size: 1.25rem;
  }
  .about__event-more {
    text-align: right;
  }
  .about__event-more-link {
    font-size: 0.9375rem;
  }
}
@media (min-width: 1024px) {
  .about__event {
    margin-top: 180px;
    margin-bottom: 0;
  }
  .about__event-list {
    gap: 38px;
  }
  .about__event-item {
    gap: 28px;
    padding: 0 50px 30px;
  }
  .about__event-header {
    gap: 12px;
    margin-top: -62px;
  }
  .about__event-icon {
    width: 124px;
    height: 124px;
  }
  .about__event-title {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------
  採用情報バナーセクション
--------------------------------------------------*/
.main .recruit {
  margin-top: 76px;
  padding: 0 7.88804vw;
}
.home .main .recruit {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .main .recruit {
    padding: 0 40px;
  }
  .recruit__inner {
    max-width: 847px;
    margin: 90px auto 60px;
  }
}

/*--------------------------------------------------
  CTAセクション
--------------------------------------------------*/
.hospital-info {
  margin-top: 76px;
  padding: 0 0 72.01014vw;
  background: url(../img/bg-sp.jpg) no-repeat center bottom / contain;
}
.hospital-info__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 36px 7.88804vw;
  background: #FFF;
  box-shadow: 0px 0 40px 0px rgba(16, 27, 77, 0.19);
}
.hospital-info__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hospital-info__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hospital-info__name img {
  width: 142px;
}
.hospital-info__contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hospital-info__address,
.hospital-info__tel-fax {
  color: #0E2846;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}
.hospital-info__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.hospital-info__action-btn {
  background: #1E64AA;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 90px;
  height: 90px;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hospital-info__action-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.-access.hospital-info__action-icon-img {
  width: 15px;
  height: 24px;
}
.-contact.hospital-info__action-icon-img {
  width: 24px;
  height: 19px;
}
.hospital-info__action-text {
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
}
.hospital-info__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 83.6858%;
}
.hospital-info__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .hospital-info {
    padding: 42px 3.125vw 78px;
    background: url(../img/bg-03.jpg) no-repeat left center / cover;
  }
  .hospital-info__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 36px 6.5%;
  }
  .hospital-info__content {
    gap: 20px;
  }
  .hospital-info__actions {
    justify-content: flex-start;
  }
  .hospital-info__action-text {
    font-size: 0.625rem;
  }
}
@media (min-width: 1024px) {
  .hospital-info {
    background-size: contain;
  }
  .hospital-info__inner {
    grid-template-columns: 1fr 548px;
    padding: 80px 64px;
    background: rgba(255, 255, 255, 0.94);
  }
  .hospital-info__name img {
    width: 174px;
  }
  .hospital-info__map {
    height: 240px;
    padding-top: 0;
  }
}

/*--------------------------------------------------
  ページヘッダー
--------------------------------------------------*/
.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(90deg,#E6EDF4 0%, #FFFFFF 50%, #FFFFFF 100%);
  padding: 32px 0;
}
body.about .page-header,
body.outpatient .page-header,
body.hospitalization .page-header,
body.rehabilitation .page-header,
body.support .page-header {
  padding: 24px 0 12px;
}
.page-header__heading {
  color: #1E64AA;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
body.about .page-header__heading::before,
body.outpatient .page-header__heading::before,
body.hospitalization .page-header__heading::before,
body.rehabilitation .page-header__heading::before,
body.support .page-header__heading::before {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #E6EDF4;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: '';
}
.about .page-header__heading::before {
  background-image: url(../img/icon-about.svg);
}
.outpatient .page-header__heading::before {
  background-image: url(../img/icon-outpatient.svg);
}
.hospitalization .page-header__heading::before {
  background-image: url(../img/icon-hospitalization.svg);
}
.rehabilitation .page-header__heading::before {
  background-image: url(../img/icon-rehabilitation.svg);
}
.support .page-header__heading::before {
  background-image: url(../img/icon-support.svg);
}
@media (min-width: 768px) {
  .page-header {
    height: 172px;
    padding: 62px 0;
  }
  body.about .page-header,
  body.outpatient .page-header,
  body.hospitalization .page-header,
  body.rehabilitation .page-header,
  body.support .page-header {
    padding: 28px 0 12px;
  }
  .page-header__heading {
    font-size: 2rem;
  }
  body.about .page-header__heading::before,
  body.outpatient .page-header__heading::before,
  body.hospitalization .page-header__heading::before,
  body.rehabilitation .page-header__heading::before,
  body.support .page-header__heading::before {
    width: 80px;
    height: 80px;
  }
}

/*--------------------------------------------------
  パンくず
--------------------------------------------------*/
.breadcrumb {
  position: absolute;
  top: 2px;
  left: 3.125vw;
  color: #1E64AA;
  font-size: 0.75rem;
}
.breadcrumb a {
  color: #1E64AA;
}
@media (min-width: 768px) {
  .breadcrumb {
    top: 10px;
    font-size: 0.8125rem;
  }
}
@media (min-width: 1024px) {
  .breadcrumb {
    left: 40px;
  }
}
@media (min-width: 1367px) {
  .breadcrumb {
    left: calc(50% - 683px);
    padding-left: 40px;
  }
}

/*--------------------------------------------------
  ローカルナビゲーション
--------------------------------------------------*/
.local-nav {
  column-gap: 2em;
  margin: 24px 3.125vw;
}
.local-nav .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: #1E64AA;
  font-weight: 700;
  font-size: 1rem;
}
.local-nav .wp-block-button__link::after {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #E6EDF4 url(../img/icon-arrow-blue.svg) no-repeat center center / contain;
  transform: rotate(90deg);
  content: '';
}
@media (min-width: 768px) {
  .local-nav {
    column-gap: 2.5em;
    margin-top: 32px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .local-nav {
    column-gap: 3.5em;
    margin-right: 0;
    margin-left: 0;
  }
  .local-nav .wp-block-button__link {
    font-size: 1.125rem;
  }
  .local-nav .wp-block-button__link::after {
    width: 27px;
    height: 27px;
  }
}

/*--------------------------------------------------
  ページコンテンツ
--------------------------------------------------*/
body:not(.about):not(.outpatient):not(.hospitalization):not(.rehabilitation) .page-content__inner {
  padding: 36px 6.361323vw;
}
body.news .page-content__inner.-important {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 6.361323vw !important;
  background: #FCEDED;
}
.page .wp-block-group {
  padding: 36px 6.361323vw 40px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
#philosophy {
  background-image: url(../img/img-main.jpg);
  background-color:rgba(255,255,255,0.77);
  background-blend-mode:lighten;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
#facility,
#annex {
  background: #E6EDF4;
}
#facility .wp-block-columns.is-layout-flex,
#floormap .wp-block-columns.is-layout-flex,
#annex .wp-block-columns.is-layout-flex {
  gap: 12px;
  margin-bottom: 12px;
}
#facility .wp-block-columns.is-layout-flex:last-of-type,
#floormap .wp-block-columns.is-layout-flex:last-of-type,
#annex .wp-block-columns.is-layout-flex:last-of-type {
  margin-bottom: 0;
}
#annex .wp-block-columns.is-layout-flex {
  gap: 0;
}
@media (min-width: 768px) {
  .page .wp-block-group {
    padding-top: 78px;
    padding-bottom: 78px;
    font-size: 1rem;
  }
  .page-content #philosophy .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #facility .wp-block-columns.is-layout-flex,
  #floormap .wp-block-columns.is-layout-flex,
  #annex .wp-block-columns.is-layout-flex {
    gap: 24px;
    margin-bottom: 24px;
  }
  #annex .wp-block-columns.is-top {
    gap: 0;
  }
  #facility .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column,
  #floormap .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column,
  #annex .wp-block-columns:not(.is-not-stacked-on-mobile):not(:has([style*=flex-basis]))>.wp-block-column {
    flex-basis: inherit !important;
    width: calc(50% - 12px);
  }
  #annex .wp-block-columns.is-top>.wp-block-column:first-of-type {
    flex-basis: 33.33% !important;
  }
  #annex .wp-block-columns.is-top>.wp-block-column:last-of-type {
    flex-basis: 66.66% !important;
  }
}
@media (min-width: 1024px) {
  body:not(.about):not(.outpatient):not(.hospitalization):not(.rehabilitation) .page-content__inner {
    max-width: 870px;
    margin: 0 auto;
    padding: 78px 0;
  }
  body.news .page-content__inner {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  body.news .page-content__inner.-important {
    padding: 36px 0 !important;
  }
  body.news .page-content__inner.-important::before {
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
    width: 100vw;
    height: 100%;
    background: #FCEDED;
    content: '';
  }
  .page-content .wp-block-group__inner-container {
    max-width: 870px;
    margin-right: auto;
    margin-left: auto;
  }
  .page .wp-block-group {
    padding-right: 0;
    padding-left: 0;
  }
  #philosophy {
    background-size: contain;
  }
}

.page .page-content .wp-block-heading {
  margin-bottom: 1em;
  color: #1E64AA;
  font-weight: 700;
}
.page .page-content h2.wp-block-heading {
  font-size: 1.5rem;
}
.page .page-content h3.wp-block-heading {
  font-size: 1.125rem;
}
.page .page-content h4.wp-block-heading {
  font-size: 1rem;
}
#floormap h4.wp-block-heading {
  position: relative;
  margin-top: 2em;
  margin-bottom: 1.5em;
}
#floormap h4.wp-block-heading::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background:#0073C0;
  content: '';
}
#floormap h4.wp-block-heading strong {
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: url(../img/bg-floormap.svg) no-repeat left center / contain;
  letter-spacing: 0.05em;
  text-align: center;
}
#floormap h4.wp-block-heading strong::first-letter {
  font-size: 1.75em;
}
@media (min-width: 768px) {
  .page .page-content h2.wp-block-heading {
    font-size: 2rem;
  }
  .page .page-content h3.wp-block-heading {
    font-size: 1.5rem;
  }
  .page .page-content h4.wp-block-heading {
    font-size: 1.25rem;
  }
  #floormap h4.wp-block-heading {
    font-size: 2rem;
  }
  #floormap h4.wp-block-heading strong {
    width: 78px;
    height: 78px;
    line-height: 78px;
  }
}

.is-lead {
  margin-bottom: 1.5em;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.71;
  text-align: center;
}
@media (min-width: 768px) {
  .is-lead {
    font-size: 1.75rem;
  }
}

.page-content ul li,
.entry-body ul li {
  position: relative;
  padding-left: 1em;
  &::before {
    content: '・';
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 1.6em;
  }
}
.page-content #philosophy ul li {
  margin-top: 0.5em;
  font-weight: 700;
}
.page-content li > ul,
.entry-body li > ul,
.page-content li > ol,
.entry-body li > ol {
  margin-bottom: 1em;
}
.page-content ol,
.entry-body ol {
  list-style: inherit;
  margin-left: 1em;
}
@media (min-width: 768px) {
  .page-content #philosophy ul li {
    font-size: 1.125rem;
  }
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
  padding: 1em 0.5em;
  border-color: #BCC7F0;
  border-right: 0;
  border-left: 0;
  background: transparent
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
}
.wp-block-image :where(figcaption) {
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 768px) {
  .wp-block-image :where(figcaption) {
    font-size: 0.9375rem;
  }
  #annex .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-top: 0;
    margin-left: 7.5%;
  }
}
@media (min-width: 1024px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
    padding: 1.125em 0.75em;
  }
}

.wp-block-file:last-of-type {
  margin-bottom: 0;
}
.wp-block-file {
  margin-bottom: 2em;
}
.wp-block-file a {
  display: flex;
  align-items: center;
  max-width: 500px;
  padding: 1em;
  gap: 1.3em;
  border: 1px solid #0073C0;
  border-left-width: 4px;
  background: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.wp-block-file a::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
@media (min-width: 768px) {
  .wp-block-file a {
    padding: 1em;
    font-size: 1.0625rem;
  }
}

.map-area {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 83.6858%;
}
.map-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map-link {
  margin-top: 0.5em;
  text-align: right;
}
.map-link a {
  display: inline-flex;
  gap: 10px;
  color: #1E64AA;
  font-weight: 700;
  font-size: 0.875rem;
}
.map-link a::before {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #E6EDF4 url(../img/icon-access.png) no-repeat center center / contain;
  content: '';
}
.map-area + .wp-block-group {
  flex-wrap: wrap;
  padding-bottom: 0;
}
#access h3.wp-block-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  color: inherit;
}
#access h3.wp-block-heading span {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .map-area {
    padding-top: 41.03448%;
  }
  .map-link {
    margin-top: 1.5em;
  }
  .map-area + .wp-block-group {
    gap: 2em;
    padding: 2em 0 0;
  }
  #access h3.wp-block-heading span {
    font-size: 1rem;
  }
}

/*--------------------------------------------------
  お知らせページ
--------------------------------------------------*/
.news__notice-item:not(:first-of-type) {
  margin-top: 0.5em;
}
@media (min-width: 1024px) {
  body.news .news__contents {
    margin-left: auto;
  }
}

/*--------------------------------------------------
  アーカイブページ
--------------------------------------------------*/
.hentry + .hentry {
  margin-top: 2em;
}
@media (min-width: 768px) {
  body.archive .page-content__inner {
    display: flex;
    flex-wrap: wrap;
    row-gap: 36px;
  }
  .hentry {
    width: 48.24074%;
  }
  .hentry + .hentry {
    margin-top: 0;
  }
  .hentry:nth-of-type(even) {
    margin-left: auto;
  }
}
@media (min-width: 1024px) {
  body.archive .page-content__inner {
    max-width: 1100px !important;
    row-gap: 40px;
    column-gap: 32px;
  }
  .hentry {
    width: calc((100% - 64px) / 3);
  }
  .hentry:nth-of-type(even) {
    margin-left: 0;
  }
}

/* ページネーション */
.p-pagination {
  margin-top: 60px;
}
.p-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
/* 記事が見つからない場合のメッセージ */
.information__no-posts {
  text-align: center;
  padding: 50px 20px;
  color: #98A6B5;
  font-size: 1rem;
  line-height: 1.6;
}
.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.page-numbers li {
  display: inline-block;
  padding-left: 0 !important;
}
.page-numbers li::before {
  display: none;
}
.page-numbers li a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page-numbers li span.current {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #1E64AA;
  color: #FFF;
}
@media screen and (max-width: 768px) {
  .page-numbers li a,
  .page-numbers li span.current {
    width: 38px;
    height: 38px;
  }
}

/*--------------------------------------------------
  詳細ページ
--------------------------------------------------*/
.entry-header {
  display: flex;
  flex-direction: column-reverse;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #BCC7F0;
}
.entry-title {
  margin-top: 0.5em;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
}
.entry-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.entry-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 119px;
  height: 21px;
  border-radius: 2px;
  color: #F8FAFD;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0 1em;
  text-align: center;
}
.entry-category.-report {
  background: #43AF3E;
}
.entry-category.-recruitment {
  background: #1E64AA;
}
.entry-category.-information {
  background: #707070;
}
.entry-category.-important {
  background: #BC3838;
}
.entry-category.-event {
  background: #FFB74D;
}
.entry-category.-blog {
  background: #3DA9A9;
}
.entry-meta time {
  color: #0E2846;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
}
.entry-body {
  margin-top: 2em;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.entry-body h2 {
  margin-top: 2em;
  font-weight: 700;
  font-size: 1.125rem;
}
.entry-body h3 {
  font-size: 1.0625rem;
}
.entry-body h4 {
  font-size: 1rem;
}
.entry-body > ul,
.entry-body > ol,
.entry-body p {
  margin-top: 1em;
}
.entry-body .wp-block-image {
  width: fit-content;
  max-width: 640px;
  margin-top: 2em;
  margin-bottom: 2em;
  text-align: center;
}
.entry-body .wp-block-image figcaption {
  font-size: 0.8125rem;
}
.entry-footer {
  margin-top: 40px;
  text-align: center;
}
.entry-footer a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 225px;
  color: #F8FAFD;
  padding: 8px 24px;
  background: #1E64AA;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media (min-width: 768px) {
  .entry-title {
    font-size: 1.75rem;
  }
  .entry-body {
    font-size: 1rem;
  }
  .entry-body h2 {
    font-size: 1.5rem;
  }
  .entry-body h3 {
    font-size: 1.25rem;
  }
  .entry-body h4 {
    font-size: 1.125rem;
  }
  .entry-body .wp-block-image {
    margin-top: 2.5em;
    margin-bottom: 2.5em;
  }
  .entry-body .wp-block-image figcaption {
    font-size: 0.875rem;
  }
    .entry-footer {
    margin-top: 60px;
  }
  .entry-footer a {
    font-size: 1rem;
  }
}

/*--------------------------------------------------
  フッター
--------------------------------------------------*/
.footer__menu {
  padding: 3rem 0;
  background: #F1F6FA;
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.footer__menu-link {
  display: block;
  position: relative;
  font-weight: 700;
}
.footer__menu-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: #1E64AA;
  content: '';
}
.footer__menu-text {
  display: block;
}
@media (max-width: 767px) {
  .footer__menu-item {
    width: 100%;
  }
  .footer__menu-item.-banner {
    border-top: 1px solid #FFF;
  }
  .footer__menu-link {
    padding: 12px 16px;
    border-top: 1px solid #FFF;
    font-size: 0.8125rem;
  }
  .footer__menu-item.-banner .footer__menu-link {
    max-width: 250px;
    margin: 24px auto 0;
    padding: 0;
    border-top: 0;
  }
  .footer__menu-link::before {
    left: calc(50% - 36.38676vw);
  }
  .footer__menu-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: calc(50% - 36.38676vw);
    transform: translateY(-50%);
    width: 27px;
    height: 27px;
  border-radius: 50%;
    background: url(../img/icon-arrow-blue.svg) no-repeat center center / contain;
    transition: all 0.3s ease;
  }
  .footer__menu-item.-banner .footer__menu-link::before,
  .footer__menu-item.-banner .footer__menu-link::after {
    display: none;
  }
  .footer__menu-item:has(.footer__dropdown-list) .footer__menu-link::after {
    background-color: #E6EDF4;
    transform: translateY(-50%) rotate(90deg);
  }
  .footer__menu-text {
    max-width: 72.77353vw;
    margin: 0 auto;
    padding-left: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__menu {
    padding: 3rem 3.125vw 1rem;
  }
  .footer__menu-item {
    width: calc(100% / 3);
    margin-bottom: 20px;
  }
  .footer__menu-item.-banner {
    margin-top: 20px;
  }
  .footer__menu-link {
    font-size: 0.875rem;
  }
  .footer__menu-text {
    padding-left: 24px
  }
  .footer__banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .footer__banner-img {
    height: 110px;
  }
}
@media (min-width: 1024px) {
  .footer__menu-list {
    max-width: 980px;
    margin: 0 auto;
  }
  .footer__menu-item {
    width: 25%;
    margin-bottom: 24px;
  }
  .footer__menu-item.-banner {
    margin-left: auto;
  }
  .footer__menu-link {
    padding: 3px 0;
    font-size: 1rem;
  }
  .footer__menu-link::before {
    top: calc(50% - 1px);
  width: 12px;
    height: 2px;
  }
  .footer__menu-text {
    padding-left: 24px;
  }
}

/* フッタードロップダウンメニュー */
.footer__dropdown-list {
  display: none;
  max-width: calc(72.77353vw - 40px);
  margin: -4px auto 16px;
  padding: 0;
}
.footer__dropdown-list.active {
  display: block;
}
.footer__dropdown-link {
  display: block;
  padding: 8px 0;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  .footer__dropdown-list {
    display: block;
    margin-top: 4px;
    margin-bottom: 0;
    margin-left: 24px;
  }
}
@media (min-width: 1024px) {
  .footer__dropdown-link {
    padding: 4px 0;
  }
}

.footer__banner {
  background: #E6EDF4;
}
.footer__banner-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  max-width: 980px;
  margin: 0 auto;
}
.footer__banner-item {
  overflow: hidden;
  box-shadow: 0px 12px 20px rgba(30, 100, 170, 0.08);
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .footer__banner {
    padding: 36px 16px;
  }
  .footer__banner-list {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 85.75063vw;
    max-width: 337px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .footer__banner {
    padding: 36px 3.125vw;
  }
}
@media (min-width: 1024px) {
  .footer__banner-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__copyright {
  background: #0073C0;
  padding: 20px;
  text-align: center;
}
.footer__copyright-text {
  color: #F8FAFD;
  font-size: 0.6875rem;
}
@media (max-width: 767px) {
  .footer__copyright {
    padding: 8px;
  }
}
/*1104*/
div#bl_btn_contact {
    margin: 3rem 0;
}
/*--------------------------------------------------
  外来のご案内
--------------------------------------------------*/
.page #medicalhours .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-bottom: 0.5em;
}
.page #medicalhours {
  position: relative;
  padding: 40px 8.14249vw 0;
  overflow: hidden;
  background: url(../img/bg-02.jpg) no-repeat center top / auto calc(100% - 420px); 
}
@media (min-width: 768px) {
  .page-content #medicalhours .wp-block-group__inner-container {
    max-width: 510px;
    margin-right: auto;
    margin-left: auto;
  }
  .page #medicalhours .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
    margin-bottom: 2.5em;
  }
  .page #medicalhours  {
    padding: 60px 20px;
    background-position: center center;
    background-size: cover;
  }
  .page .wp-block-group.consultation_notice div{
    display: flex;
  }
}
.page .wp-block-group.consultation_notice {
    padding: 0;
}
.page .page-content h3.wp-block-heading.consultation__notice-title {
    min-width: 4em;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 0;
    color: unset;
}
@media (min-width: 768px) {
    .page .page-content h3.wp-block-heading.consultation__notice-title {
        font-size: 1.0625rem;
        color: unset;
    }
}
.page #medicalhours .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
    font-weight: 700;
}
/*--------------------------------------------------
  地域連携室
--------------------------------------------------*/
h3.h3_heading {
  padding-top: 1.5em;
}
.page #admission .wp-block-group,.page #nursing .wp-block-group,.page #cooperation .wp-block-group {
  padding: 34px 5.08905vw 10px;
}
p.txt_.notes {
  font-size: 0.8125rem;
}
.bl_cont_column .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .page #admission .wp-block-group, .page #nursing .wp-block-group, .page #cooperation .wp-block-group {
    padding: 30px 0 30px;
  }
  p.txt_.notes {
    font-size: 0.875rem;
  }
}
p.add_bg {
  padding: 1rem;
  background-color: #F1F6FA;
  margin: 0.5rem 0;
  font-weight: 700;
}
div.add_bg {
  margin-top: 34px;
  padding: 1.5em 1em 0 !important;
  background-color: #F1F6FA;
}
.page #cooperation .wp-block-group .consultation_notice {
  padding: 0;
}
.wp-block-columns.bl_img_column {
  margin: 2rem 0;
}
.wp-block-buttons.bl_btn_link {
  margin: 2rem 0;
}
#nursing,
#visit {
  background: #E6EDF4;
}

/*--------------------------------------------------
  通所・訪問リハビリサービス
--------------------------------------------------*/
.page #outpatient .wp-block-group,.page #disclosure .wp-block-group {
  padding: 34px 5.08905vw 10px;
}
.page #outpatient .wp-block-group.is-group {
  padding-right: 0;
  padding-left: 0;
}
p.txt_lead {
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .page #outpatient .wp-block-group,.page #disclosure .wp-block-group {
    padding: 30px 0 30px;
  }
}

/*--------------------------------------------------
  協力医療機関・施設
--------------------------------------------------*/
.page .wp-block-group.is-grid {
  margin-top: 40px;
  padding: 0;
}
.wp-block-group.is-grid .wp-block-group__inner-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.wp-block-group.is-grid .wp-block-group__inner-container > .wp-block-group {
  box-shadow: 0px 12px 40px 0px rgba(201, 218, 223, 0.46);
  background: #FFF;
}
.page .is-grid .wp-block-group {
  padding: 0;
}
.is-grid .wp-block-media-text>.wp-block-media-text__content {
  padding: 20px 24px 0;
}
.page .page-content .is-grid .wp-block-heading {
  color: #0E2846;
  font-weight: 500;
  font-size: 0.75rem;
}
.page .page-content .is-grid .wp-block-heading strong {
  font-weight: 500;
  font-size: 1.0625rem;
}
.page .page-content .is-grid .is-address {
  font-size: 0.875rem;
}
.page .page-content .is-grid .is-link {
  margin-top: auto;
}
.page .page-content .is-grid .is-link a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  height: 40px;
  margin: 20px -24px 0;
  padding: 0 24px;
  background: #1E64AA;
  color: #FFF;
  font-weight: 700;
  font-size: 0.875rem;
}
.page .page-content .is-grid .is-link a::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-link.svg) no-repeat center center / contain;
  content: '';
}
@media (min-width: 768px) {
  .wp-block-group.is-grid .wp-block-group__inner-container > .wp-block-group {
    width: calc(50% - 20px);
  }
  .wp-block-group.is-grid .wp-block-group__inner-container > .wp-block-group .wp-block-group__inner-container {
    display: block;
    height: 100%;
  }
  .is-grid .wp-block-media-text {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .is-grid .wp-block-media-text>.wp-block-media-text__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }
  .page .page-content .is-grid .is-address {
    margin-bottom: 20px;
  }
  .page .page-content .is-grid .is-link a {
    margin-top: auto;
  }
}

/*--------------------------------------------------
  採用情報
--------------------------------------------------*/
.recruit .is-lead {
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: left;
}
.page.recruit .wp-block-group {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0;
}
.recruit #facility {
  margin: 60px -6.361323vw 80px;
  padding: 34px  6.361323vw 40px;
}
.recruit #facility .is-lead {
  font-weight: 500;
  font-size: min(3.79134vw, 0.9375rem);
  line-height: 1.6;
}
.recruit #facility .wp-block-columns {
  margin-top: 2.5em;
}
.recruit .page-content ul li {
  padding-left: 0;
  &::before {
    display: none;
  }
}
#recruitment .wp-block-item {
  margin-top: 1.5em;
}
#recruitment .wp-block-item a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 1em 3em 1em 1em;
  gap: 1.3em;
  border: 1px solid #0073C0;
  background: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
}
#recruitment .wp-block-item a::after {
  position: absolute;
  top: calc(50% - 9px);
  right: 1em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
.single-recruitment .entry-header {
  display: block;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 768px) {
  .page.recruit .wp-block-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .page.recruit .wp-block-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  .recruit .page-content ul li {
    width: calc(50% - 20px);
  }
}

/*--------------------------------------------------
  お問い合わせ
--------------------------------------------------*/
.page .wp-block-group#faq,
.page .wp-block-group#form {
  padding: 0;
}
.page .wp-block-group#faq {
  margin-top: 40px;
}
.page .wp-block-group#form {
  margin-top: 80px;
}
@media (min-width: 768px) {
  .page .wp-block-group#faq {
    margin-top: 80px;
  }
  .page .wp-block-group#form {
    margin-top: 100px;
  }
}

.schema-faq {
  margin-top: 40px;
  counter-reset: listnum;
}
.schema-faq-section {
  padding: 1em 0.5em;
  border-top: 1px solid #BCC7F0;
}
.schema-faq-section:last-of-type {
  border-bottom: 1px solid #BCC7F0;
}
.schema-faq-section > .schema-faq-question {
  color: #1E64AA;
  font-size: 1rem;
}
.schema-faq-section > .schema-faq-question::before {
  font-size: 1.25rem;
  font-style: italic;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
  counter-increment: listnum;
  content: "Q" counter(listnum) ". ";
}
.schema-faq-answer {
  margin-top: 4px;
}
@media (min-width: 1024px) {
  .schema-faq-section {
    padding: 1.125em 0.75em 1.125em 64px;
  }
  .schema-faq-section > .schema-faq-question {
    position: relative;
    font-size: 1.125rem;
  }
  .schema-faq-section > .schema-faq-question::before {
    position: absolute;
    top: -4px;
    left: -48px;
    font-size: 1.5rem;
  }
}

.contact-form {
  margin-top: 40px;
}
.contact-form dt {
  display: flex;
  align-items: center;
  margin-top: 16px;
  font-weight: 500;
}
.contact-form dt .required {
  display: inline-flex;
  align-items: center;
  margin-left: 0.75em;
  padding: 2px 4px 4px;
  border: 1px solid #1E64AA;
  border-radius: 3px;
  background: #FFF;
  color: #1E64AA;
  font-size: 0.6875rem;
  line-height: 1;
}
.contact-form dd {
  margin-top: 4px;
}
.wpcf7-form .wpcf7-spinner {
  display: none;
  width: 100%;
  margin-top: 10px;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select {
  width: 100%;
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid #E7E7E7;
  background-color: #FFF;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
::placeholder {
  color: #E0E0E0;
}
textarea {
  width: 100%;
  height: 140px;
  padding: 10px 15px;
  border-radius: 3px;
  border: 1px solid #E7E7E7;
  background-color: #FFF;
  font-weight: normal;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
input:focus,
textarea:focus {
  z-index: 10;
  outline: 0;
  border: 1px solid #0073C0;
}
input[type="submit"],
input[type="button"],
input[type="reset"] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 280px;
  height: 52px;
  padding: 0 20px;
  border: none;
  background-color: #1E64AA;
  color: #FFF;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  transition: all 0.2s ease;
}
input[type="button"],
input[type="reset"] {
  background-color: #707070;
}
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  position: relative;
}
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #274B67;
  content: '';
  width: 20px;
  height: 20px;
  margin-bottom: auto;
  margin-right: .5em;
  margin-top: auto;
  transition: background-color .3s;
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  border-top: 2px solid #1E64AA;
  border-right: 2px solid #1E64AA;
  transform: rotate(135deg);
  position: absolute;
  left: 5px;
  top: 7px;
}
.wpcf7-not-valid-tip {
  color: #EA0829;
  font-weight: normal;
}
.wpcf7-response-output {
  margin-top: 1rem;
}
.wpcf7-not-valid-tip {
  overflow: visible;
  white-space: nowrap;
}
.wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-acceptance {
  display: block;
  font-size: 0.875rem;
  text-align: center;
}
.wpcf7-acceptance a {
  text-decoration: underline;
}
.form-notice {
  margin-top: 40px;
}
.form-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-form {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 48px 16px;
    width: 568px;
    margin: 64px auto 0;
  }
  .contact-form dt {
    width: 206px;
  }
  .contact-form dd {
    width: 346px;
    margin-top: 0;
  }
  .wpcf7-acceptance {
    margin-top: -24px;
    text-align: left;
  }
  .form-notice {
    font-size: 0.875rem;
    text-align: center;
  }
}

/*--------------------------------------------------
  個人情報保護方針
--------------------------------------------------*/
.page.privacy .page-content {
  font-size: 0.9375rem;
}
.page.privacy .page-content h2.wp-block-heading {
  margin-top: 2em;
}
.page.privacy .page-content h3.wp-block-heading {
  margin-top: 2em;
}
.page.privacy .page-content ol {
  list-style: decimal;
}
.page.privacy .page-content .wp-block-list.notice {
  margin-top: 2em;
  padding: 1.5em 1em;
  border: 1px solid #E7E7E7;
}
.page.privacy .page-content .wp-block-list.notice li {
  font-size: 0.875rem;
  line-height: 1.5;
}
.page.privacy .page-content .wp-block-list.notice li:not(:first-child) {
  margin-top: 0.5em;
}
.page.privacy .page-content .wp-block-list.notice li::before {
  content: '※';
}

/*--------------------------------------------------
  サンクスページ・404ページ
--------------------------------------------------*/
body.thanks .wp-block-buttons,
body.error404 .wp-block-buttons {
  margin-top: 60px;
  text-align: center;
}
body.thanks .wp-block-button__link,
body.error404 .wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 225px;
  color: #F8FAFD;
  padding: 8px 24px;
  border-radius: 0;
  background: #1E64AA;
  font-weight: 700;
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  body.thanks .wp-block-button__link,
  body.error404 .wp-block-button__link {
    font-size: 1rem;
  }
}
/*1215記事登録用スタイル追加*/
.wp-block-group.child_list {
    padding: 0.5rem 1rem;
}
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table.style_tbl>table {
    width: max-content;
}
.wp-block-group.box_item {
    padding: 1rem;
    border: 1px solid;
    width: fit-content;
}
h5.wp-block-heading {
    font-weight: bold;
    padding: 1rem 0 0;
}
p.list_txt {
    margin: 0.5rem 0;
    font-size: 0.875rem;
    line-height: 1.8em;
}
@media (max-width: 767px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
    background-color: hsla(226, 63%, 84%, 0.4);
  }
  p.list_txt {
    font-size: 0.75rem;
  }
}
/**/
/*ページ内ボタンスタイル追加*/
.hospitalization .bl_btn_link {
  margin-top: 1.5em;
}
.hospitalization .wp-block-button__link {
  color: #000;
  border-radius: 0;
}
.hospitalization .bl_btn_link a {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  min-width: 290px;
  padding: 1em 3em 1em 1em;
  gap: 1.3em;
  border: 1px solid #0073C0;
  background: #FFF;
  font-weight: 700;
  font-size: 0.9375rem;
}
.hospitalization .bl_btn_link a::after {
  position: absolute;
  top: calc(50% - 9px);
  right: 1em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  background: #1E64AA url(../img/icon-arrow-white.svg) no-repeat center center / contain;
  content: '';
}
