@charset "utf-8";
/* Roboto Condensed */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* font設定 (NotoSansJP,サブセット化済 YakuHanJPはfunction.phpで読み込み)
---------------------------------------------------------------- */
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Regular.woff) format('woff');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Bold.woff) format('woff');
  font-weight: bold;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Light.woff) format('woff');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-Medium.woff) format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'noto-sans-jp';
  src: url(../webfonts/NotoSansJP/NotoSansJP-SemiBold.woff) format('woff');
  font-weight: 600;
  font-display: swap;
}
body {
  font-family: YakuHanJP, 'noto-sans-jp', sans-serif;
}

/* title
---------------------------------------------------------------- */
/* h1 */
.ttl-01 {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-ttl-top);
  color: var(--theme-text);
  border-radius: var(--br-ll);
  margin-bottom: 0.5em;
  text-align: center;
}
.ttl-01.text-left {
  text-align: left;
}
.ttl-01 span {
  display: inline-block;
}
.ttl-01 span.sub {
  font-size: 0.5em;
  color: var(--theme-main);
  margin-bottom: 0.2em;
}
.ttl-01 span.sub::first-letter {
  color: var(--a11y-text, var(--theme-accent));
}
@media only screen and (max-width: 768px) {
  .ttl-01.text-left {
    text-align: center;
  }
}
/* h2 */
.ttl-02 {
  position: relative;
  background: var(--theme-surface-blue);
  border-radius: var(--br-xl);
  font-size: var(--fs-ttl-l);
  padding: 0.8em 0.8em 0.8em 2.5em;
}
.ttl-02::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
  width: 0.8em;
  height: 0.8em;
  border: var(--theme-main) 5px solid;
  border-radius: var(--br-xl);
}
.editor-page > :first-child {
  margin-top: 0 !important;
}
@media only screen and (max-width: 599px) {
  .ttl-02 {
    padding: 0.8em 0.8em 0.8em 2em;
  }
  .ttl-02::before {
    left: 0.7em;
  }
}
/* h3 */
.ttl-03 {
  position: relative;
  font-size: var(--fs-ttl-m);
  font-weight: var(--fw-bold);
  color: var(--theme-main);
  padding: 0 0 0.5em 1.8em;
  background: var(--separator-bottom);
}
.ttl-03::before {
  position: absolute;
  content: '';
  display: inline-block;
  background: var(--theme-main);
  top: 0.6em;
  left: 0.5em;
  width: 0.8em;
  height: 4px;
  border-radius: var(--br-xl);
}
/* h4 */
.ttl-04 {
  font-size: var(--fs-ttl-s);
  padding-bottom: 0.2em;
}
/* h5 */
.ttl-05 {
  font-size: var(--fs-ttl-xs);
}
.ttl-leaf {
  position: relative;
  padding-left: 1.5em;
}
.ttl-leaf::before {
  content: '\f06c';
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: 900;
  font-size: 1em;
  color: var(--theme-deco-primary);
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  vertical-align: baseline;
}
/* ステップタイトル */
.ttl-step {
  position: relative;
  font-size: var(--fs-lead);
  border: var(--theme-main) 2px solid;
  border-radius: var(--br-m);
  padding: 1em 1em 1em 2.5em;
  counter-increment: step-count;
}
/* 🍃 アイコン */
.ttl-step::before {
  content: '\f06c';
  position: absolute;
  top: 0.8em;
  display: inline-block;
  vertical-align: middle;
  left: 1em;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: 900;
  font-size: 1em;
  color: var(--theme-deco-primary);
}
.ttl-step-txt {
  font-size: var(--fs-lead);
  position: relative;
  padding-left: 4em;
  margin: 0;
}
/* 🔢 STEP テキスト */
.ttl-step-txt::before {
  position: absolute;
  left: 0;
  content: 'Step' counter(step-count);
  font-size: 1em;
  font-weight: var(--fw-bold);
  color: var(--theme-main);
}
/* 矢印 */
.ttl-step-arrow::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  --triangle-height: 1em;
  --triangle-width: 1.5em;
  border-top: var(--triangle-height) solid var(--theme-deco-primary);
  border-left: var(--triangle-width) solid transparent;
  border-right: var(--triangle-width) solid transparent;
  position: absolute;
  left: 50%;
  top: -2em;
  transform: translateX(-50%);
}
@media only screen and (max-width: 599px) {
  .ttl-step {
    padding: 1em 1em 1em 1em;
  }
  .ttl-step-txt {
    padding-left: 0;
    padding-top: 2em;
  }
  .ttl-step-txt::before {
    top: 0;
    left: 1.6em;
  }
  .ttl-step-arrow::after {
    --triangle-height: 0.8em;
    --triangle-width: 1.4em;
    top: -1.75em;
  }
}

/* text / a
---------------------------------------------------------------- */
/* リード文 */
.txt-lead {
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
}
/* リンクテキスト */
.txt-link {
  text-decoration: underline;
}
.txt-link[target='_blank'] {
  position: relative;
  display: inline-block;
}
.txt-link[target='_blank']::after {
  display: inline-block;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: 400;
  content: '\f2d2';
  font-size: 1em;
  color: var(--theme-link);
  text-decoration: none;
  border-bottom: 0;
  margin-left: 0.1em;
}
/* アイコンテキスト */
.txt-double-circle,
.txt-single-circle {
  position: relative;
  padding-left: 1.5em;
  font-weight: var(--fw-bold);
}
.txt-double-circle {
  color: var(--a11y-text, var(--theme-main));
}
.txt-single-circle {
  color: var(--theme-ida);
}
.txt-double-circle::before,
.txt-single-circle::before {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: 900;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.txt-double-circle::before {
  content: '\f500';
}
.txt-single-circle::before {
  content: '\f007';
}
/* 拡大する */
.caption-zoom {
  color: var(--theme-link);
  margin-top: 0.5em;
}
.caption-zoom::after {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  content: '\f00e';
  font-weight: var(--fa-style, 900);
  font-size: 1em;
  margin-left: 0.5em;
  color: var(--theme-main);
}

.txt-next-link {
  font-size: var(--fs-default);
  position: relative;
  display: flex;
  gap: 0.4em;
  color: var(--theme-link);
  width: fit-content;
}
.txt-down-link {
  font-size: var(--fs-default);
  display: flex;
  gap: 0.4em;
  position: relative;
  color: var(--theme-link);
  width: fit-content;
  padding: 0.2em;
  transition: 0.3s;
  text-decoration: none;
}
.arrow {
  --arrow-bg: var(--a11y-btn-bg, var(--theme-opp-btn));
  --arrow-text: var(--a11y-link, var(--theme-opp-btn-text));
  position: relative;
  display: inline-block;
  border-radius: var(--br-xl);
  background: var(--arrow-bg);
  border: var(--a11y-btn-border, transparent) 1px solid;
  vertical-align: text-top;
}
.arrow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: var(--fa-style, 900);
  font-size: 0.8em;
  color: var(--arrow-text);
  text-align: right;
}
.txt-next-link .arrow {
  right: 0;
  width: 1.8em;
  height: 1.8em;
}
.txt-next-link .arrow::after {
  content: '\f054';
}
.txt-down-link .arrow {
  width: 1.5em;
  height: 1.5em;
  margin-top: 0.1em;
}
.txt-down-link span:nth-of-type(2) {
  flex: 1;
}
.txt-down-link .arrow::after {
  content: '\f078';
}

/* btn
---------------------------------------------------------------- */
/* 基本設定 */
.btn {
  --cl-btn-text: var(--theme-main-btn-text);
  --cl-btn-bg: var(--theme-main-btn);
  --cl-btn-border: var(--theme-main-btn-text);
  display: inline-block;
  position: relative;
  color: var(--a11y-btn-text, var(--cl-btn-text));
  background: var(--a11y-btn-bg, var(--cl-btn-bg));
  border: var(--a11y-btn-border, var(--cl-btn-border)) 2px solid;
  border-radius: var(--br-s);
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
  text-align: center;
  padding: 0.75em 1em;
  width: 100%;
}
/* メインボタン */
.btn-01 {
  font-size: var(--fs-lead);
}
/* メイン反転ボタン */
.btn-02 {
  --cl-btn-text: var(--theme-opp-btn-text);
  --cl-btn-bg: var(--theme-opp-btn);
  --cl-btn-border: var(--theme-opp-btn-text);
  font-weight: 500;
  padding: 1em 1.2em;
}
/* 左寄せボタン */
.btn-03 {
  padding: 1em 1.2em;
}
/* 角丸ボタン */
.btn.btn-round {
  border-radius: var(--br-xl);
}
/* 閲覧支援ボタン */
.btn.btn-accessibility {
  padding: 0.2em 2em;
}
/* CTAボタン */
.btn.btn-cta-01 {
  --cl-btn-text: var(--theme-cta-text);
  --cl-btn-bg: var(--theme-cta);
  --cl-btn-border: var(--theme-cta);
}
.btn.btn-cta-02 {
  --cl-btn-text: var(--theme-cta-02-text);
  --cl-btn-bg: var(--theme-cta-02);
  --cl-btn-border: var(--theme-cta-02);
}

/* 右矢印 */
.btn.btn-next {
  padding-right: 2em;
}
.btn.btn-next::before,
.btn.btn-next::after {
  content: '';
  width: 0.7em;
  height: 3px;
  display: inline-block;
  border-radius: var(--br-xl);
  background: var(--a11y-btn-text, var(--cl-btn-text));
  position: absolute;
  right: 1em;
  transition: 0.3s right;
}
.btn.btn-next::before {
  top: calc(50% - 0.3em);
  transform: rotate(45deg);
}
.btn.btn-next::after {
  bottom: calc(50% - 0.3em);
  transform: rotate(-45deg);
}
.btn.btn-next:hover::before,
.btn.btn-next:hover::after {
  right: 0.7em;
}
/* 左矢印 (戻るボタン) */
.btn.btn-back {
  padding-left: 2em;
  position: relative;
}
.btn.btn-back::before,
.btn.btn-back::after {
  content: '';
  width: 0.7em;
  height: 3px;
  display: inline-block;
  border-radius: var(--br-xl);
  background: var(--a11y-btn-text, var(--cl-btn-text));
  position: absolute;
  left: 1em;
  transition: 0.3s left;
}
.btn.btn-back::before {
  top: calc(50% - 0.3em);
  transform: rotate(-45deg); /* 反転 */
}
.btn.btn-back::after {
  bottom: calc(50% - 0.3em);
  transform: rotate(45deg); /* 反転 */
}
.senior-nav .nav-item a.btn-back:hover::before,
.senior-nav .nav-item a.btn-back:hover::after {
  left: 0.7em;
}

@media only screen and (max-width: 1280px) {
  .btn-01 {
    font-size: var(--fs-default);
  }
}
@media only screen and (max-width: 1024px) {
  .btn-01 {
    font-size: var(--fs-lead);
  }
}

/* box
---------------------------------------------------------------- */
.box-basic {
  padding: 2em 1.5em;
  border: var(--theme-border-separator) 4px solid;
  border-radius: var(--br-l);
  background: var(--theme-base);
}

/* list
---------------------------------------------------------------- */
.dl-list {
  display: flex;
}
.dl-list dt {
  font-weight: normal;
}
.dl-list a {
  color: var(--theme-link);
  text-decoration: underline;
}
/* チェックリスト */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5em 1em;
}
.check-list.row {
  flex-direction: row;
  flex-wrap: wrap;
}
.check-item {
  display: flex;
  align-items: center;
}
.check-list dt {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--fs-default);
  font-weight: normal;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.check-list dt::before {
  content: '\f058';
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  position: absolute;
  left: 0;
  top: 0.02em;
  color: var(--theme-accent);
  font-size: 1.1em;
}
.check-list dd {
  margin: 0;
  padding-left: 0.5em;
  font-size: var(--fs-ttl-m);
  font-weight: var(--fw-bold);
  color: var(--theme-main);
  display: flex;
}
.check-list dd::before {
  content: '：';
  margin-right: 0.5em;
}
@media only screen and (max-width: 599px) {
  .check-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* スケジュールリスト */
.schedule-list {
  border: 1px solid var(--theme-border-separator);
  border-radius: var(--br-m);
  overflow: hidden;
  background: var(--theme-bg);
}
.schedule-item {
  display: flex;
  border-bottom: 1px solid var(--theme-border-separator);
}
.schedule-item:last-child {
  border-bottom: none;
}
/* 左側のラベル部分 */
.schedule-item dt {
  width: 80px;
  padding: 1.5em 0.5em 1.5em 0.8em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* 右側の時間部分 */
.schedule-item dd {
  margin: 0;
  padding: 1.2em 0.8em;
  flex-grow: 1;
  font-weight: var(--fw-bold);
  line-height: 1.4;
}
.schedule-item dd span {
  display: block;
  font-weight: normal;
  margin-top: 0.2em;
}

/* 背景色の塗り分け */
.item-day dt {
  background-color: #f1dcd6;
} /* 薄いオレンジ */
.item-semi dt {
  background-color: #dbeaf7;
} /* 薄い青 */
.item-deep dt {
  background-color: #efefef;
} /* 薄いグレー */

/* icon
---------------------------------------------------------------- */
.icon,
.fa-icon {
  display: flex;
  align-items: center;
}
/* 画像 */
.icon::before {
  content: '';
  display: inline-block;
  margin-right: 0.5em;
}
.icon-mail::before {
  background: url(../images/common/icon-mail.svg) center center no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1em;
}
/* font-awesome */
.fa-icon::before {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  margin-right: 0.3em;
}
.fa-icon-tel::before {
  content: '\f095';
  font-weight: var(--fa-style, 900);
}
.fa-icon-arrow::before {
  content: '\f054';
  font-weight: var(--fa-style, 900);
  font-size: 1em;
  color: var(--theme-accent);
  text-align: right;
}
/* 外部リンクアイコン */
.ex-link {
  position: relative;
  padding-right: 1.2em;
}
.ex-link::after {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  content: '\f2d2';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: var(--fa-style, 900);
  font-size: 0.8em;
}
/* PDFリンクアイコン */
.pdf-link {
  display: inline-block;
  position: relative;
  padding-right: 1.4em;
}
.pdf-link::after {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  content: '\f1c1';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-weight: var(--fa-style, 400);
  font-size: 1.2em;
}

/* header
---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--theme-bg);
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--header-side-pd);
  border-radius: 0 0 var(--br-ll) var(--br-ll);
  box-shadow: var(--shadow);
  z-index: 5;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-left: 0.5em;
  width: 100%;
  max-width: 30%;
}
.header-logo {
  height: 100%;
  width: 100%;
  max-width: 380px;
}
.header-logo a {
  display: flex;
  align-items: center;
  height: inherit;
}
.header-logo-img {
  width: 45px;
}
.site-logo-txt {
  font-size: var(--fs-ttl-l);
  font-weight: 500;
  padding: 0.2em 0.5em 0.2em 20px;
  border-radius: var(--br-xs);
  text-align: center;
  width: fit-content;
}
.header-contents-wrap {
  display: flex;
  margin-left: auto;
  height: 100%;
}

/* utility nav */
.nav-utility {
  height: 45%;
}
.nav-utility-list {
  height: 100%;
}
.nav-utility-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-link);
  font-size: var(--fs-notes);
  padding: 1em;
}

/* global nav */
.nav-global {
  height: 55%;
}
.nav-global-list {
  height: 100%;
}
.nav-global-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-link);
  font-size: var(--fs-default);
  font-weight: 500;
  height: 100%;
  padding: 0.8em;
  text-decoration: none;
}
.nav-global-item > span {
  position: relative;
  display: inline-block;
}
.nav-global-item:hover {
  opacity: 1;
  color: var(--theme-main);
}

/* ハンバーガーボタン */
.btn-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-hamburger button {
  position: relative;
  width: var(--hamburger-width);
  height: var(--hamburger-width);
}
.btn-hamburger button::after {
  position: absolute;
  content: 'メニュー';
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  color: var(--theme-link);
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.btn-hamburger button.is-active::after {
  content: '閉じる';
}
.btn-hamburger button span,
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  display: block;
  position: absolute;
  background: var(--a11y-link, var(--theme-main));
  height: 4px;
  border-radius: var(--br-xl);
  transition: all 0.4s;
}
.btn-hamburger button span {
  display: block;
  width: 60%;
  top: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transform-origin: 50% 50%;
}
.btn-hamburger button span:before,
.btn-hamburger button span:after {
  content: '';
  width: 100%;
}
.btn-hamburger button span:before {
  top: 10px;
}
.btn-hamburger button span:after {
  top: -10px;
}
.btn-hamburger button.is-active span {
  background: transparent;
}
.btn-hamburger button.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.btn-hamburger button.is-active span:after {
  top: 0;
  transform: rotate(-45deg);
}
.btn-hamburger-mobile {
  display: none;
}

@media only screen and (max-width: 1500px) {
  .site-logo-txt {
    font-size: var(--fs-ttl-s);
  }
  .nav-global-item {
    font-size: var(--fs-notes);
  }
  .header-logo-wrap {
    max-width: 28%;
  }
}

@media only screen and (max-width: 1280px) {
  .header-logo-wrap {
    max-width: 80%;
    padding: 0.5em 0 0.5em 1em;
  }
  .header-logo {
    max-width: 100%;
  }
  .site-logo-txt {
    font-size: var(--fs-lead);
  }
  .nav-global-item {
    font-size: var(--fs-default);
  }
  .header-right-block,
  .btn-hamburger-sitemap {
    display: none !important;
  }
  .btn-hamburger-mobile {
    display: flex !important;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    border-radius: 0 0 var(--br-l) var(--br-l);
  }
  .header-logo-wrap {
    padding: 0.5em 0 0.5em 0.5em;
  }
  .header-logo-img {
    width: 30px;
  }
  .site-logo-txt {
    padding: 0.2em 0.5em 0.2em 15px;
  }
}

/* mobile nav
---------------------------------------------------------------- */
.nav-mobile {
  position: fixed;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: var(--theme-surface-blue);
  overflow: auto;
  opacity: 0;
  z-index: -999;
}
.nav-mobile.is-open {
  opacity: 1;
  z-index: 110;
}
.nav-mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--theme-surface-blue);
  padding: 0 var(--header-side-pd);
  width: 100%;
  height: var(--header-height);
  z-index: 111;
}
.nav-mobile-search {
  padding: var(--space-sl) 0;
}
.nav-mobile-cta {
  gap: 0.5em;
  max-width: 800px;
}
@media only screen and (max-width: 400px) {
  .nav-mobile-cta .btn {
    font-size: var(--fs-notes);
  }
  .nav-mobile-search .site-search button.btn-search-submit {
    width: 5em;
  }
}

.nav-mobile-list {
  padding-bottom: var(--wrap-pd);
}
.nav-mobile-list > li {
  background: var(--separator-bottom);
}
.nav-mobile-item {
  position: relative;
  display: block;
  color: var(--theme-link);
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
  padding: 1em 1.5em 1em 1em;
  width: 100%;
  text-align: left;
}

a.nav-mobile-item::before,
a.nav-mobile-item::after {
  content: '';
  width: 0.7em;
  height: 3px;
  display: inline-block;
  border-radius: var(--br-xl);
  background: var(--theme-link);
  position: absolute;
  right: 0.5em;
}
a.nav-mobile-item::before {
  top: calc(50% - 0.4em);
  transform: rotate(45deg);
}
a.nav-mobile-item::after {
  bottom: calc(50% - 0.16em);
  transform: rotate(-45deg);
}

.nav-mobile-list .btn-dropdown:before,
.nav-mobile-list .btn-dropdown:after {
  content: '';
  width: 1em;
  height: 3px;
  display: inline-block;
  background: var(--theme-link);
  border-radius: var(--br-xl);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.nav-mobile-list .btn-dropdown:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.nav-mobile-list .btn-dropdown.is-open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .btn-dropdown.is-open:after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.nav-mobile-list .dropdown-menu {
  display: none;
  width: 100%;
  padding-bottom: 0.5em;
}
.nav-mobile-list .dropdown-menu li {
  padding: 0 1em;
}
.nav-mobile-list .dropdown-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: var(--fs-default);
  color: var(--theme-text);
  padding: 0.5em 0;
}
.nav-mobile-list .dropdown-menu li a::before {
  content: '';
  border-top: 1px solid var(--theme-main);
  border-right: 1px solid var(--theme-main);
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  transition: 0.3s;
  transform: rotate(45deg);
}

/* sitemap
---------------------------------------------------------------- */
.sitemap {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
  background: var(--theme-surface-blue);
  overflow-y: auto;
}
body.is-sitemap-open {
  overflow: hidden;
}
.sitemap.is-open {
  visibility: visible;
  opacity: 1;
}
.sitemap-header {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  padding: 0 var(--header-side-pd);
  top: 0;
  width: 100%;
  height: var(--header-height);
}
.sitemap-inner {
  padding: 0 0 var(--wrap-pd);
}
.sitemap-section a {
  color: var(--theme-link);
}
.sitemap-ttl {
  background: var(--separator-bottom);
}
.sitemap-ttl a {
  display: block;
  font-size: var(--fs-lead);
  text-decoration: underline;
  padding: 0.8em 0;
}
.sitemap-children-list {
  margin: 1em 0 0 0;
  padding-left: 0.5em;
}
.sitemap-children-list li a {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em 0.5em 0;
  font-size: var(--fs-default);
}
.sitemap-children-list li a::before {
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  margin-right: 0.8em;
  content: '\f054';
  font-weight: var(--fa-style, 900);
  font-size: 0.8em;
  color: var(--theme-main);
  text-align: right;
}
.sitemap-children-list li a[target='_blank']::after {
  display: inline-block;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-weight: 400;
  content: '\f2d2';
  font-size: 1em;
  color: var(--theme-link);
  text-decoration: none;
  border-bottom: 0;
  margin-left: 0.1em;
}
.sitemap-sub-list {
  padding-left: 1em;
}

@media only screen and (max-width: 1024px) {
  .sitemap-header {
    padding: 10px 5px;
  }
  .col-4-2-1.col-sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
  }
}
@media only screen and (max-width: 599px) {
  .sitemap-inner {
    padding: 4em 0;
  }
}

/* サイト内検索
---------------------------------------------------------------- */
.site-search {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.site-search .icon-search {
  position: absolute;
  inset: 0;
  margin: auto auto auto 1em;
  font-size: 1.2em;
  color: var(--theme-main);
  width: 1em;
  height: 1em;
}
.site-search input[type='search'] {
  width: 100%;
  border: var(--theme-main) 3px solid;
  background: var(--theme-bg);
  border-radius: var(--br-xl);
  box-shadow: none;
  padding: 1em 10em 1em 3em;
}
.site-search button.btn-search-submit {
  position: absolute;
  inset: 0;
  margin: auto 1em auto auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  height: 2.5em;
  padding: 0.5em;
  font-size: var(--fs-default);
  background: var(--a11y-bg, var(--theme-main));
  color: var(--theme-link-opp);
  border: var(--a11y-btn-border, transparent) 2px solid;
  border-radius: var(--br-xl);
  text-align: center;
}

@media only screen and (max-width: 599px) {
  .site-search input[type='search'] {
    padding: 1em 6em 1em 2.8em;
  }
  .site-search button.btn-search-submit {
    width: 6em;
    line-height: 1;
  }
}

/* footer
---------------------------------------------------------------- */
.footer {
  position: relative;
  background: var(--theme-bg);
  width: 100%;
  padding: 0 0 1em;
}
/* 病院リンク */
.footer-hospital-nav {
  padding: var(--wrap-pd) 0 var(--wrap-pd-s);
}
.hospital-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-link-opp);
  width: 100%;
  height: 100%;
  border: var(--a11y-btn-border, var(--theme-link-opp)) 4px solid;
  aspect-ratio: 117 / 32;
  border-radius: var(--br-l);
  padding: 1.5em 1em;
}
.hospital-banner-link.theme-kawasaki {
  background: url('../images/common/footer_bnr_kawasaki.jpg') center center no-repeat;
  background-size: cover;
}
.hospital-banner-link.theme-ida {
  background: url('../images/common/footer_bnr_ida.jpg') center center no-repeat;
  background-size: cover;
}
.hospital-banner-link .banner-ttl {
  font-size: var(--fs-ttl-m);
}
.hospital-banner-link .banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background: var(--a11y-bg, transparent);
}
.hospital-banner-link .txt-next-link .arrow {
  --arrow-bg: var(--a11y-bg, var(--theme-base));
  --arrow-text: var(--a11y-link, var(--hospital-color));
  transition: 0.3s all;
}
.hospital-banner-link:hover .txt-next-link .arrow {
  right: -0.5em;
}
/* CTA */
.footer-cta {
  background: url(../images/top/top_about_bg.png) bottom center no-repeat;
  background-size: contain;
}
.footer-cta-right {
  --row-gap: 20px;
}
.footer-cta-box {
  background: var(--theme-bg);
  box-shadow: var(--shadow);
  color: var(--theme-text);
  padding: 4em 3em;
  border-radius: var(--br-ll);
}
.footer-logo {
  width: 100%;
}
.footer-logo a {
  display: flex;
  width: 100%;
  height: inherit;
}
.footer-logo a img {
  width: 45px;
  height: auto;
}
.footer-logo a .site-logo-txt {
  text-align: left;
}
.footer-cta-tel {
  display: block;
  width: fit-content;
  color: var(--theme-link);
  font-size: var(--fs-ttl-top);
  font-weight: var(--fw-bold);
  line-height: 1;
  padding: 0.2em;
  margin-top: 10px;
}
.footer-cta-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.footer-cta-right .btn {
  font-size: var(--fs-lead);
}

@media only screen and (max-width: 1280px) {
  .footer-cta-tel {
    font-size: calc(var(--fs-ttl-top) * 0.8);
  }
}
@media only screen and (max-width: 1024px) {
  .footer-cta-box {
    grid-template-columns: 1fr !important;
    gap: 1em;
  }
  .footer-cta-ttl {
    text-align: center;
  }
  .footer-cta-tel {
    font-size: 2.8125rem;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-cta-right-top {
    gap: 1em;
  }
  .footer-contact .btn {
    display: block;
  }
  .footer-contact .btn span {
    font-size: var(--fs-lead);
  }
}
@media only screen and (max-width: 599px) {
  .footer-cta-box {
    padding: 40px 20px;
  }
  .footer-cta-tel {
    font-size: 1.875rem;
    margin-top: 0.2em;
  }
}

/* nav-footer */
.nav-footer-list {
  gap: var(--space-sm);
}
.nav-footer-item {
  display: inline-block;
  font-size: var(--fs-default);
  color: var(--theme-link);
  padding: 0.5em;
  text-decoration: underline;
}

/* footer bottom */
.footer-bottom {
  --footer-bottom-space: var(--space-mm);
  background: var(--separator-top);
  --col-gap: var(--footer-bottom-space);
}
.footer-bottom-ttl {
  line-height: 1.8;
}
.footer-bottom-hospital-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--footer-bottom-space);
}
.footer-bottom-hospital-item + .footer-bottom-hospital-item {
  margin-top: var(--footer-bottom-space);
}
.footer-bottom-hospital-item-ttl {
  font-size: var(--fs-lead);
  color: var(--theme-main);
}
.footer-bottom-hospital-item-ttl a {
  color: var(--a11y-link, var(--theme-main));
}
.footer-copyright {
  font-size: var(--fs-notes);
  padding: 0.5em 0;
}
@media only screen and (max-width: 1024px) {
  .nav-footer-list {
    gap: 0 var(--space-xs);
  }
  .footer-bottom {
    --footer-bottom-space: var(--space-sl);
  }
}
@media only screen and (max-width: 768px) {
  .footer-bottom.grid-col {
    grid-template-columns: 1fr;
  }
  .footer-bottom-hospital-list {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom-hospital-list .dl-list {
    justify-content: center;
  }
  .footer-logo a {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
  }
  .footer-logo a img {
    width: 30px;
  }
  .footer-bottom,
  .footer-copyright {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 599px) {
}

/* 固定バナー
---------------------------------------------------------------- */
.fixed-cta-banner {
  position: fixed;
  z-index: 2;
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.4s ease-out,
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.4s;
}
.cta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a11y-btn-text, var(--theme-link-opp));
  background: var(--a11y-btn-bg, var(--theme-cta));
  border: var(--a11y-btn-border, transparent) 2px solid;
  border-right: none;
  text-decoration: none;
  font-weight: var(--fw-bold);
  transition: opacity 0.3s;
}
.cta-item:hover {
  opacity: 0.9;
}
.cta-item.attend {
  --theme-cta: var(--theme-cta-02);
}

@media (min-width: 600px) {
  .fixed-cta-banner {
    right: 0;
    top: calc(var(--header-height) + 10%);
    flex-direction: column;
    gap: 1em;
    transform: none;
  }
  .cta-item {
    padding: 1.2em 0.8em;
    border-radius: var(--br-s) 0 0 var(--br-s);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 3.2em;
  }
  .cta-text {
    writing-mode: horizontal-tb;
    width: 1em;
    word-break: break-all;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-variant-ligatures: none;
    font-feature-settings:
      'palt' 0,
      'vpal' 0,
      'kern' 0;
    font-size: var(--fs-ttl-xs);
    line-height: 1.2;
    letter-spacing: 0;
    overflow-wrap: anywhere;
  }
}

/* --- スマホ版 (下部固定) --- */
@media (max-width: 599px) {
  .fixed-cta-banner {
    left: 50%;
    bottom: 10px;
    width: 90%;
    max-width: 350px;
    height: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 20px);
    gap: 1em;
  }
  /* SPでスクロールした時だけ出る */
  .fixed-cta-banner.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .cta-item {
    flex: 1;
    width: fit-content;
    border-radius: var(--br-m);
    font-size: var(--fs-notes);
    border-top: 2px solid var(--a11y-btn-border, transparent);
    padding: 0.5em 1em;
  }
  .cta-item:first-child {
    border-right: 1px solid var(--a11y-btn-border, transparent);
  }
}

/* スライダー共通設定 common slider navigation
---------------------------------------------------------------- */
/* ボタン本体（丸枠） */
.c-slider-arrows {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}
.c-slider-nav {
  appearance: none;
  background: var(--theme-bg);
  border: 2px solid var(--theme-main);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 0;
  z-index: 2;
}
/* ホバー挙動 */
.c-slider-nav:hover:not(:disabled) {
  background: var(--theme-surface-blue);
}
/* スライダーの端に達した時の無効化 */
.c-slider-nav:disabled {
  opacity: 0.3;
  cursor: default;
}
/* 矢印アイコン（L字パーツ） */
.c-slider-arrow {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--a11y-link, var(--theme-main));
  border-right: 2px solid var(--a11y-link, var(--theme-main));
}
/* 向きの制御 */
.c-slider-nav.is-prev .c-slider-arrow {
  transform: rotate(-135deg);
  left: 2px;
}
.c-slider-nav.is-next .c-slider-arrow {
  transform: rotate(45deg);
  right: 2px;
}
/* ページネーション */
.c-slider-pagination {
  font-weight: var(--fw-bold);
  color: var(--theme-main);
  font-size: var(--fs-lead);
  min-width: 3.5em;
  text-align: center;
}
@media (max-width: 599px) {
  .c-slider-arrows {
    gap: 0.8em;
  }
}

/* トップページ Top
---------------------------------------------------------------- */
.top-hero {
  position: relative;
  background: var(--pal-white);
  width: 100%;
  height: auto;
  min-height: 680px;
  aspect-ratio: 5/2;
  padding-top: var(--header-height);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  min-height: 0;
}
.ticker-row {
  position: relative;
  display: flex;
  white-space: nowrap;
}
.ticker-content {
  display: flex;
  flex-shrink: 0;
  height: 100%;
  align-items: center;
}
.ticker-row img {
  width: auto;
  height: 100%;
  flex-shrink: 0;
  margin-top: -10px;
  margin-right: 50px;
  object-fit: contain;
  object-position: top;
}
.ticker-row img.is-bottom {
  height: 80%;
  margin-top: 0;
  align-self: flex-end;
  object-position: bottom;
}
#row1,
#row-copy,
#row3 {
  flex: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  min-height: 0;
  width: 100%;
}
#row-copy {
  flex: 0.4;
  padding: 2em 0;
}
#row-copy.ticker-row img {
  height: 100%;
  margin-top: 0;
}
#row-copy.ticker-row img:first-of-type {
  padding-left: 3em;
}
#row3.ticker-row img.is-bottom {
  margin-bottom: -20px;
}
#hero-toggle-btn {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--theme-main);
  background: var(--theme-bg);
  color: var(--theme-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lead);
  z-index: 2;
}
#hero-toggle-btn.is-paused {
  background: var(--theme-main);
  color: var(--theme-text-opp);
}
.js-main-copy {
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 1024px) {
  .top-hero {
    aspect-ratio: 5/6;
    min-height: auto;
  }
  #row-copy {
    flex: 1.5;
    padding: 1em 0;
    justify-content: center;
    overflow: visible;
  }
  #row-copy .ticker-content {
    transform: none !important;
    width: 100%;
    justify-content: center;
  }
  #row-copy .main-copy {
    margin-right: 0;
  }
}
@media (max-width: 599px) {
  .top-hero {
    aspect-ratio: 4/6;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-content {
    transform: none !important;
  }
  .js-main-copy {
    opacity: 1 !important;
    transform: none !important;
  }
  #hero-toggle-btn {
    display: none;
  }
}

/* top-topics ----------------------------- */

/* top-about ----------------------------- */
.top-se-about {
  position: relative;
  overflow: hidden;
}
/* 背景画像専用のレイヤー */
.top-se-about::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 1;
  min-height: 400px;
  background: url(../images/top/top_about_bg.png) no-repeat center bottom;
  background-size: cover;
  pointer-events: none;
}
.top-se-about .b-wrapper {
  position: relative;
  z-index: 2;
}
.top-about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  border-radius: var(--br-l);
  padding: 3.5em 1em;
  color: var(--theme-link-opp);
  text-align: center;
  overflow: hidden;
  z-index: 0;
}
.top-about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.top-about-card:hover::before,
.top-about-card:focus::before {
  transform: scale(1.1);
}
.top-about-card-ttl {
  font-size: var(--fs-ttl-m);
  background: var(--a11y-bg, transparent);
  width: fit-content;
}
.top-about-card-ttl span {
  display: block;
  font-size: 1.58em;
}
.top-about-tag {
  border: var(--theme-text-opp) 1px solid;
  background: var(--a11y-bg, transparent);
  padding: 0.2em 1em;
  border-radius: var(--br-xs);
  backdrop-filter: blur(2px);
}
.top-about-card .txt-next-link {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
}
.top-about-card .txt-next-link .arrow {
  --arrow-bg: var(--a11y-bg, var(--theme-base));
  --arrow-text: var(--a11y-link, var(--hospital-color));
  right: auto;
}
@media (max-width: 599px) {
  .top-about-card {
    padding: 2.5em 1em;
    gap: 0em;
  }
}

/* top-education ----------------------------- */
.top-education-col .col-item:nth-of-type(2n-1) {
  margin-top: var(--space-mm);
}
@media screen and (max-width: 768px) {
  .top-education-col .col-item:nth-of-type(2n-1) {
    margin-top: 0;
  }
}
.top-education-card {
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
.top-education-card:hover {
  transform: translateY(-8px);
}
.top-education-card .img-wrap {
  width: calc(100% - 30px);
  margin-left: auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  border-radius: var(--br-l);
  z-index: -1;
}
.top-education-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.top-education-card:hover img {
  transform: scale(1.1);
}
.top-education-card .txt-wrap {
  width: calc(100% - 30px);
  margin: -25% auto 0 0;
  background-color: var(--theme-bg);
  border-radius: 0 var(--br-ll) 0 0;
  padding: 2em 1.5em;
  z-index: 2;
}
.top-education-card h3,
.top-education-card p {
  color: var(--theme-link);
}
.top-education-card:hover .stretched-link {
  opacity: 1;
}
@media screen and (max-width: 599px) {
  .top-education-card {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-education-card .img-wrap {
    aspect-ratio: 1/1;
  }
  .top-education-col {
    display: flex;
    flex-direction: column;
  }
  .top-education-card .img-wrap {
    width: 100%;
  }
  .top-education-card .txt-wrap {
    width: 100%;
    margin: 0;
    padding: 1.5em 0;
  }
}
.top-education-card h3,
.top-education-card p {
  color: var(--theme-link);
}

.top-education-card:hover .stretched-link {
  opacity: 1;
}

/* top-people ----------------------------- */
.top-se-people {
  overflow-x: hidden;
}
.top-se-people .break-wrapper-right {
  border-radius: var(--br-ll) 0 0 var(--br-ll);
  padding: var(--wrap-pd) 0 0 6%;
  margin-left: auto;
  margin-bottom: 8rem;
}
.top-se-people .break-wrapper-right .inner {
  margin-left: 0;
}
.people-flex-container {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  position: relative;
}
.people-header {
  flex-shrink: 0;
  width: 360px;
  z-index: 1;
  position: relative;
  background: var(--theme-surface-green);
}
.people-deco-img {
  width: clamp(160px, 10vw, 200px);
  top: 80%;
  left: calc(var(--wrap-pd) + 1.5%);
  position: absolute;
  z-index: 2;
}
.people-deco-img img {
  width: 100%;
  height: auto;
}
.people-slider {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  margin-right: calc(((100vw - 100%) / 2) * -1);
  margin-bottom: -8rem;
}
.people-slider .splide__track {
  overflow: visible !important;
}
.people-slider .splide__list {
  display: flex;
  align-items: flex-end;
}
.people-slider .splide__slide .people-card {
  transform: scale(0.8);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: bottom center;
}
.people-slider .splide__slide.is-active .people-card {
  transform: scale(1);
}
/* 操作パネル（自作矢印と数字） */
.people-slider-controls {
  margin-top: 2rem;
}

/* カードデザイン */
.people-card {
  display: block;
  text-decoration: none;
  color: var(--theme-text);
}
.people-card-inner {
  position: relative;
  padding: 0 1.5em 1.5em 0;
}
.people-card-bg {
  position: relative;
  aspect-ratio: 4/6;
  border-radius: var(--br-l);
  overflow: visible;
}
.people-card.is-type-01 .people-card-bg {
  background-color: var(--theme-people-01);
}
.people-card.is-type-02 .people-card-bg {
  background-color: var(--theme-people-02);
}
.people-card.is-type-03 .people-card-bg {
  background-color: var(--theme-people-03);
}
.people-card.is-type-04 .people-card-bg {
  background-color: var(--theme-people-04);
}
.card-num {
  position: absolute;
  top: 0.1em;
  left: 0.1em;
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
  z-index: 1;
  pointer-events: none;
}
.people-card-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 88%;
  z-index: 2;
  transition: transform 0.3s ease;
}
.people-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* アクティブなカードにホバーした時の演出 */
.splide__slide .people-card:hover .people-card-img {
  transform: translateX(-5%) scale(1.05);
}
.people-card-ttl {
  color: var(--theme-text);
}
@media only screen and (max-width: 1024px) {
  .top-se-people .break-wrapper-right {
    padding: var(--wrap-pd) 0 0 0;
    margin-bottom: 20rem;
  }
  .people-flex-container {
    flex-direction: column;
    gap: 1em;
  }
  .people-slider .splide__slide .people-card {
    transform: scale(0.9);
  }
  .people-deco-img {
    width: 17.5vw;
    top: -8%;
    left: 3%;
  }
  .people-header {
    display: contents;
    width: 100%;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .people-header .ttl-01 {
    order: 1;
    margin-left: auto;
    margin-right: auto;
  }
  .people-slider {
    order: 2;
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    overflow: visible !important;
    margin-bottom: 0 !important;
  }
  .people-slider-controls {
    order: 3;
    position: static !important;
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .top-se-people .break-wrapper-right {
    padding: var(--wrap-pd) 0 var(--wrap-pd) 0 !important;
    margin-bottom: 0 !important;
  }
  .people-card-ttl {
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  .top-se-people .b-wrapper-over {
    padding: 0;
  }
  .top-se-people .break-wrapper-right {
    padding: var(--wrap-pd) 0;
    border-radius: var(--br-ll) var(--br-ll) 0 0;
  }
}
@media only screen and (max-width: 599px) {
  .people-flex-container {
    display: flex;
    flex-direction: column;
  }

  .people-slider .splide__track {
    overflow: visible !important;
    padding: 0 !important;
  }
  .people-slider .splide__slide {
    opacity: 0.6;
    z-index: 1;
    transition:
      transform 0.6s,
      opacity 0.6s,
      z-index 0.6s;
  }
  .people-slider .splide__list {
    padding-left: 0 !important;
  }
  .people-slider .splide__slide.is-active {
    transform: scale(1);
    opacity: 1;
    z-index: 5; /* 重なりを一番上に */
  }
  .people-slider .splide__slide.is-next,
  .people-slider .splide__slide.is-prev {
    z-index: 2;
    opacity: 0.8;
  }
  .people-card-inner {
    padding: 0;
  }
  .people-deco-img {
    width: 24vw;
    top: -5%;
    left: 5%;
  }
}

/* top-wlb ----------------------------- */
.top-se-wlb .break-wrapper-left {
  border-radius: 0 var(--br-ll) var(--br-ll) 0;
  padding: var(--wrap-pd) 0 var(--wrap-pd) 0;
}
.top-se-wlb .break-wrapper-left .inner {
  margin-right: 0;
  padding: 0 3%;
}
.top-se-wlb .wlb-col {
  gap: 5%;
}
.top-se-wlb .txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 1em;
  justify-content: space-between;
}
.wlb-deco-img {
  position: absolute;
  top: 77%;
  right: 5%;
  width: clamp(150px, 9vw, 180px);
  aspect-ratio: 45/67;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .top-se-wlb .break-wrapper-left {
    padding: var(--wrap-pd) 0;
  }
  .top-se-wlb .wlb-col {
    grid-template-columns: 1fr;
  }
  .top-se-wlb .txt-wrap {
    display: contents;
  }
  .top-se-wlb .wlb-ttl br {
    display: none;
  }
  .top-se-wlb .wlb-ttl {
    order: 1;
  }
  .top-se-wlb .img-wrap {
    order: 2;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-se-wlb .wlb-txt {
    order: 3;
  }
  .top-se-wlb .wlb-btn {
    order: 4;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-lm);
  }
  .wlb-deco-img {
    top: -10%;
    right: 5%;
    width: clamp(120px, 15vw, 180px);
  }
}
@media only screen and (max-width: 768px) {
  .top-se-wlb .b-wrapper-over {
    padding: 0;
  }
  .top-se-left .break-wrapper-left {
    border-radius: var(--br-ll) var(--br-ll) 0 0;
    padding: var(--wrap-pd) 0;
  }
}
@media only screen and (max-width: 599px) {
  .wlb-deco-img {
    top: -5%;
    right: 5%;
    width: 20vw;
  }
}

/* top-blog ----------------------------- */
.top-se-blog .break-wrapper-right {
  border-radius: var(--br-ll) 0 0 var(--br-ll);
  padding: var(--wrap-pd) 0 var(--wrap-pd) 6%;
  margin-bottom: 14rem;
}
.top-se-blog .break-wrapper-right .inner {
  margin-left: 0;
}
.bl-header {
  margin-bottom: var(--space-sl);
}
.bl-slider {
  margin-bottom: -17rem;
}
.bl-slider .bl-slide {
  opacity: 1 !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.bl-slider .splide__track {
  overflow: hidden !important;
}
.bl-slider .splide__slide {
  backface-visibility: hidden;
}
.bl-card {
  display: block;
  text-decoration: none;
  color: var(--theme-link);
}
.bl-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--a11y-bg, var(--hospital-color));
  color: var(--theme-link-opp);
  padding: 2px 10px;
  border-radius: var(--br-xl);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
}
.bl-card-ttl {
  font-size: var(--fs-lead);
}
.bl-slider-controls {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.bl-more {
  color: var(--theme-main);
}
.bl-deco-img {
  position: absolute;
  top: -25%;
  left: 6%;
  width: clamp(170px, 10vw, 200px);
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .bl-slider {
    margin-bottom: -17rem;
    width: 100vw;
  }
  .top-se-blog .break-wrapper-right {
    padding: var(--wrap-pd) 0 var(--wrap-pd) 0;
  }
  .bl-deco-img {
    left: 2%;
  }
}
@media only screen and (max-width: 768px) {
  .top-se-blog .b-wrapper-over {
    padding: 0;
  }
  .top-se-blog .break-wrapper-right {
    border-radius: var(--br-ll) var(--br-ll) 0 0;
    padding: var(--wrap-pd) 0;
    margin-bottom: 17rem;
  }
  .bl-deco-img {
    position: absolute;
    top: -10%;
    left: 5%;
    width: 20.5vw;
  }
  .bl-lead {
    text-align: center;
  }
}

/* サブページ（タイトル） sub-hero
---------------------------------------------------------------- */
/* 募集サイト ------------------------------------ */
.sub-hero {
  margin-top: 30px;
  padding-top: var(--header-height);
  width: 100%;
  line-height: 1.4;
  background: url(../images/common/sub_hero.jpg) center center no-repeat;
  background-size: cover;
  aspect-ratio: 5/1;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.sub-hero h1,
.sub-hero p {
  font-weight: var(--fw-bold);
}
.sub-hero .ttl-01 {
  margin-bottom: 0;
  line-height: 1.4;
}
.sub-hero .ttl-01 span {
  background-color: var(--a11y-btn-bg, rgba(255, 255, 255, 0.5));
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
  border-radius: var(--br-s);
}
.sub-hero .ttl-01 span:not(.sub) {
  backdrop-filter: blur(2px);
}
.sub-hero .ttl-01 span.sub::first-letter {
  color: var(--theme-main);
}
.sub-hero .ttl-01 span.middle,
.sub-hero .ttl-01 span.note {
  font-size: 0.7em;
}
.sub-hero .ttl-01 span:nth-of-type(3) {
  margin-top: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .sub-hero {
    min-height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-hero {
    background: url(../images/common/sub_hero_sp.jpg) bottom center no-repeat;
    background-size: cover;
    aspect-ratio: 1.5/1;
  }
}

/* 看護部サイト ------------------------------------ */
.sub-hero-hospital {
  margin-top: 30px;
  padding-top: var(--header-height);
  width: 100%;
  line-height: 1.4;
  aspect-ratio: 5/1;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.sub-hero-kawasaki {
  background: url(../images/about/kawasaki/kawasaki_sub.jpg) center center no-repeat;
  background-size: cover;
}
.sub-hero-ida {
  background: url(../images/about/ida/ida_sub.jpg) center center no-repeat;
  background-size: cover;
}
.sub-hero-hospital .sub-hero-content {
  max-width: 450px;
  background-color: var(--a11y-btn-bg, transparent);
}
.sub-hero-hospital .sub-hero-ttl {
  text-align: center;
  border-top: var(--theme-text-opp) 1px solid;
}
.sub-hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--theme-text-opp);
  font-weight: var(--fw-bold);
  padding-bottom: 0.5em;
}
.sub-hero-info .catch {
  font-size: var(--fs-default);
  color: var(--hospital-color);
  background-color: var(--a11y-btn-bg, rgba(255, 255, 255, 0.8));
  border-radius: var(--br-s);
  padding: 0.2em 1.5em;
  width: fit-content;
}
.sub-hero-info .name {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-size: var(--fs-ttl-m);
  width: fit-content;
}
.sub-hero-info .name span {
  font-size: 0.6em;
}
@media only screen and (max-width: 1024px) {
  .sub-hero-hospital {
    min-height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .sub-hero-hospital .sub-hero-content {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .sub-hero-kawasaki {
    background: url(../images/about/kawasaki/kawasaki_sub_sp.jpg) bottom center no-repeat;
    background-size: cover;
    aspect-ratio: 1.5/1;
  }
  .sub-hero-ida {
    background: url(../images/about/ida/ida_sub_sp.jpg) bottom center no-repeat;
    background-size: cover;
    aspect-ratio: 1.5/1;
  }
}

/* サブページ（共通） Sub-common
---------------------------------------------------------------- */

/* 見出し toc
---------------------------------------------------------------- */
/* --- 目次コンテナ基本設定 --- */
.toc-container {
  display: none;
  background: var(--theme-bg);
  padding: 1.5em 2em;
  margin-bottom: var(--space-mm);
  border-radius: var(--br-s);
  border: var(--a11y-btn-border, var(--theme-surface-blue)) 3px solid;
}
.toc-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  min-height: 0; /* アニメーションバグ防止 */
}
.toc-list li a {
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
}
/* --- ヘッダー（ボタン）設定 --- */
.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  text-align: left;
}
.js-toc-content h2 {
  scroll-margin-top: calc(var(--header-height, 80px) + 20px);
}

/* --- PC設定（600px以上） --- */
@media only screen and (min-width: 600px) {
  .toc-header {
    display: none;
  }
  .toc-nav[hidden] {
    display: block !important;
  }
  .toc-nav {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }
}
/* --- スマホ設定（599px以下） --- */
@media only screen and (max-width: 599px) {
  .toc-container {
    padding: 1em;
  }
  .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    font-weight: var(--fw-bold);
  }
  .toc-ttl {
    color: var(--theme-link);
    font-size: var(--fs-ttl-s);
    font-weight: var(--fw-bold);
    margin: 0;
  }
  .toc-toggle-status {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--theme-link);
    font-weight: var(--fw-bold); /* 太字を復活 */
  }
  /* --- 外枠（シャッター） --- */
  .toc-nav {
    display: block !important;
    max-height: 0;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      margin 0.4s;
    visibility: hidden;
  }
  .toc-container.is-open .toc-nav {
    max-height: 1000px;
    margin-top: 1em;
    visibility: visible;
  }
  /* --- 中身（固定レイアウト） --- */
  .toc-list {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    padding-top: 1em;
    border-top: 1px solid var(--theme-surface-blue);
    transform: translateZ(0);
    will-change: transform;
    width: 100%;
  }
  /* プラスマイナスアイコン */
  .toc-toggle-icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
  }
  .toc-toggle-icon::before,
  .toc-toggle-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
  }
  /* 縦棒を足して「+」にする */
  .toc-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  /* 開いた時に縦棒を寝かせて「-」にする */
  .toc-container.is-open .toc-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .toc-nav[hidden] {
    display: block !important;
  }
}

/* 子ページリンク children link
---------------------------------------------------------------- */
.children-links-section {
  background: var(--separator-top);
  padding: var(--wrap-pd-s) 0;
  margin-top: var(--space-lm);
}
.children-links-section.is-parent-page {
  background: none;
  margin-top: 0;
}
.children-link-list {
  gap: 4em 2em;
}
.children-link-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--theme-link);
}
.children-link-item .txt-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.children-link-item .page-outline {
  margin-top: 1em;
}
.children-link-item:hover .img-wrap img {
  scale: 1.1;
}

@media only screen and (max-width: 768px) {
  .children-link-list {
    gap: 2em 1em;
  }
  .children-link-list .page-outline {
    display: none;
  }
}

/* 看護部紹介 about
---------------------------------------------------------------- */
/* --- 病院ごとの色定義 --- */
/* 川崎病院の場合 */
.theme-kawasaki {
  --hospital-color: var(--theme-main);
  --hospital-surface-color: var(--theme-surface-blue);
}
/* 井田病院の場合 */
.theme-ida {
  --hospital-color: var(--theme-ida);
  --hospital-surface-color: var(--theme-surface-green);
}

.ttl-btn {
  position: relative;
  text-align: center;
  padding: 1em;
  background: var(--a11y-bg, var(--hospital-color));
  color: var(--theme-text-opp);
  border-radius: var(--br-xl);
  width: 80%;
  max-width: 400px;
  margin: auto auto -1.5em auto;
  z-index: 1;
}
:where(.theme-kawasaki, .theme-ida) .block-dl-list {
  padding: 0 !important;
  border-left: var(--theme-border-table) 1px solid;
  border-right: var(--theme-border-table) 1px solid;
}
:where(.theme-kawasaki, .theme-ida) .block-dl-list-dt {
  background: var(--hospital-surface-color);
  color: var(--theme-text) !important;
  width: 120px;
  min-width: 0 !important;
  flex-shrink: 0;
  padding: 1em 0.8em;
}
:where(.theme-kawasaki, .theme-ida) .block-dl-list-dd {
  flex-grow: 1;
  padding: 1em 0.8em;
}
.block-tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
}
.block-tag {
  font-weight: 300;
  background: var(--a11y-bg, var(--hospital-color));
  color: var(--theme-text-opp);
  border: var(--a11y-btn-border, transparent) 1px solid;
  border-radius: var(--br-xs);
  padding: 0.1em 0.5em;
  margin: 0 !important;
}

/* 看護部ページ kawasaki/ida
---------------------------------------------------------------- */

.top-hero-hospital {
  position: relative;
  width: 100%;
  background: var(--theme-bg);
  padding-top: var(--header-height);
  aspect-ratio: 2/1;
  overflow: hidden;
  min-height: 680px;
}
.top-hero-kawasaki {
  background-image: url(../images/about/kawasaki/kawasaki_main.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.top-hero-ida {
  background-image: url(../images/about/ida/ida_main.jpg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
.top-hero-content {
  position: absolute;
  bottom: 45%;
  width: fit-content;
}
.hospital-hero-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  color: var(--theme-text-opp);
  font-size: var(--fs-ttl-top);
  font-weight: var(--fw-bold);
  background: var(--a11y-bg, transparent);
}
.top-hero-hospital .top-hero-ttl .catch {
  position: relative;
  font-size: 0.5em;
  padding: 0.2em 0;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.top-hero-hospital .top-hero-ttl .catch::before,
.top-hero-hospital .top-hero-ttl .catch::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--theme-text-opp);
  position: absolute;
  left: 0;
}
.top-hero-hospital .top-hero-ttl .catch::before {
  top: 0;
}
.top-hero-hospital .top-hero-ttl .catch::after {
  bottom: 0;
}
.top-hero-hospital .top-hero-ttl .name {
  display: flex;
  align-items: center;
  gap: 0.2em;
}
.top-hero-hospital .top-hero-ttl .name span {
  font-size: 0.5em;
}
@media only screen and (max-width: 1024px) {
  .top-hero-hospital {
    min-height: 380px;
  }
  .top-hero-kawasaki {
    background-position: left bottom;
  }
}
@media only screen and (max-width: 599px) {
  .top-hero-hospital {
    height: 100vh;
    aspect-ratio: 39/70;
    min-height: auto;
  }
  .top-hero-kawasaki {
    background-image: url(../images/about/kawasaki/kawasaki_main_sp.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }
  .top-hero-ida {
    background-image: url(../images/about/ida/ida_main_sp.jpg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }
  .top-hero-content {
    top: 45%;
    bottom: auto;
  }
  .top-hero-hospital .top-hero-ttl {
    font-size: 7.7vw;
  }
}

/* --- 病院ページトップ ヘッドカラム --- */
.kangobu-top-head {
  display: flex;
  flex-wrap: wrap;
}
.kangobu-top-head .img-wrap {
  position: relative;
  width: 65%;
  z-index: -1;
}
.kangobu-top-head .txt-wrap {
  width: 90%;
  max-width: 520px;
  margin-top: -180px;
  margin-left: auto;
}
.kangobu-top-head .txt-wrap > div:first-of-type {
  margin-top: 0 !important;
}
.kangobu-top-head .txt-wrap > div {
  width: fit-content;
}
.kangobu-top-head .message-catch {
  font-size: var(--fs-ttl-s);
  font-weight: var(--fw-bold);
  color: var(--theme-main);
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .kangobu-top-head .img-wrap {
    width: 90%;
    max-width: 400px;
    aspect-ratio: 1/1;
  }
  .kangobu-top-head .txt-wrap {
    width: 90%;
    margin-top: -230px;
  }
  .kangobu-top-head .message-catch {
    font-size: var(--fs-ttl-l);
  }
}
@media only screen and (max-width: 599px) {
  .kangobu-top-head .txt-wrap {
    width: 98%;
    margin-top: -45%;
  }
  .kangobu-top-head .txt-wrap > div:first-of-type {
    margin-left: auto !important;
  }
  .kangobu-top-head .message-catch {
    font-size: var(--fs-ttl-s);
  }
}
@media only screen and (max-width: 340px) {
  .kangobu-top-head .message-catch {
    font-size: var(--fs-ttl-xs);
  }
}
/* --- 病院ページトップ 看護部の特徴--- */
/* ==========================================================================
  Medical Feature Section (全体リンク・重なりデザイン)
========================================================================== */
.medical-feature .feature-card:nth-child(even) {
  margin-top: var(--space-mm);
}
.feature-card {
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
  cursor: pointer;
}
.feature-card:hover {
  transform: translateY(-8px);
}
.feature-img {
  width: calc(100% - 30px);
  margin-left: auto;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  z-index: -1;
}
.feature-card:hover img {
  transition: transform 0.6s ease;
}
.feature-card:hover img {
  transform: scale(1.1);
}
.feature-card:hover .stretched-link {
  opacity: 1;
}
.feature-content {
  width: 88%;
  border-radius: var(--br-l);
  margin-top: -70%;
}
.stretched-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.txt-next-link.stretched-link {
  position: static;
  color: var(--theme-link);
}
.txt-next-link.stretched-link .arrow {
  right: auto;
  margin-left: 0.5em;
}
.feature-ttl {
  font-size: var(--fs-ttl-m);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sl);
  line-height: 1.6;
  color: var(--theme-link);
}
.feature-ttl span {
  display: block;
  background: var(--theme-bg);
  width: fit-content;
  padding: 1rem;
}
.feature-ttl span:nth-of-type(1) {
  border-radius: var(--br-s) var(--br-s) var(--br-s) 0;
}
.feature-ttl span:nth-of-type(2) {
  margin-top: -0.8em;
  border-radius: 0 var(--br-s) var(--br-s) var(--br-s);
}
.feature-link-wrap {
  background: var(--theme-bg);
  padding: 1rem;
  border-radius: var(--br-s);
}
.feature-txt {
  font-size: var(--fs-default);
  line-height: 1.8;
  color: var(--theme-link);
}

@media screen and (max-width: 768px) {
  .medical-feature {
    grid-template-columns: 1fr !important;
  }
  .medical-feature .feature-card {
    width: 100%;
    max-width: 600px;
  }
  .medical-feature .feature-card:nth-child(even) {
    margin-top: 0;
    margin-left: auto;
  }
  .feature-img {
    position: relative;
    max-width: 450px;
    margin-left: 0;
    aspect-ratio: 1/1;
    margin-left: 0;
    margin-right: auto;
    box-shadow: none;
  }
  .feature-content {
    width: 90%;
    max-width: 450px;
    border-radius: var(--br-l);
    margin-top: -25%;
    margin-left: auto;
    margin-right: 0;
    background: var(--theme-bg);
    padding: 20px;
  }
  .medical-feature .feature-card:nth-child(even) .feature-img {
    margin-left: auto;
    margin-right: 0;
  }
  .medical-feature .feature-card:nth-child(even) .feature-content {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
  .feature-ttl {
    margin-bottom: var(--space-ss);
  }
  .feature-ttl span {
    display: inline;
    padding: 0;
  }
  .feature-link-wrap {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .feature-content {
    padding:;
  }
  .feature-img {
    width: 100%;
  }
  .feature-content {
    padding: 20px 10px;
    margin-top: 0;
    width: 100%;
  }
}

/* 数字で見る看護部
---------------------------------------------------------------- */
.stats-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
/* カード基本設定 */
.stats-card {
  position: relative;
  background: var(--theme-bg);
  border-radius: var(--br-m);
  padding: 24px 10px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.stats-card::before {
  content: '';
  display: inline-block;
  background: var(--hospital-color);
  width: 120px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  opacity: 0.7;
}
/* Grid結合用クラス */
.col-span-1 {
  grid-column: span 1;
}
.col-span-2 {
  grid-column: span 2;
}
.col-span-3 {
  grid-column: span 3;
}

/* ラベル */
.stat-label {
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
}
.stat-label::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  max-width: 80px;
  height: 4px;
  background-image: radial-gradient(circle at 2px 2px, var(--theme-main) 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
}
.sub-val-large {
  line-height: 1;
}
.sub-label {
  font-size: var(--fs-default);
  color: var(--hospital-color);
  font-weight: var(--fw-bold);
}
.stat-date {
  font-size: var(--fs-notes);
}
.stat-main span {
  line-height: 1.1;
}
/* 数字スタイル */
.js-count-up {
  font-size: var(--fs-count-data);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600 !important;
  color: var(--hospital-color);
}
.unit {
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
  margin-left: 4px;
}
/* 棒グラフスタイル */
.bar-chart-area {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  min-height: 100px;
  padding-bottom: 5px;
  width: 100%;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
.bar-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 45px;
}
.bar-box {
  width: 100%;
  height: 50px;
  background: var(--theme-bg);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px 4px 0 0;
}
.bar-label {
  font-size: var(--fs-notes);
  margin-top: 8px;
  white-space: nowrap;
}
.stat-flex-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
/* 看護配置 */
.stat-ratio-wrap {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: var(--fs-count-data);
  font-weight: 600;
  color: var(--hospital-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.ratio-part,
.ratio-separator {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.js-ratio-trigger.is-animated .ratio-part,
.js-ratio-trigger.is-animated .ratio-separator {
  opacity: 1;
  transform: translateY(0);
}
.js-ratio-trigger.is-animated .ratio-separator {
  transition-delay: 0.3s;
}
.js-ratio-trigger.is-animated .ratio-part.delay {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .bar-fill,
  .ratio-part,
  .ratio-separator {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* レスポンシブ */
@media (max-width: 1024px) {
  .stats-grid-container {
    gap: 15px;
  }
  .stat-flex-row {
    flex-wrap: wrap;
    gap: 1.2em 1.5em;
  }
  .bar-chart-area {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .stats-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .stats-card:nth-child(8) /* 1番目：年代別構成 */ {
    order: 1;
  }
  .stats-card:nth-child(7) /* 2番目：平均在職年数 */ {
    order: 2;
  }
  .stats-card:nth-child(10) /* 3番目：看護配置 */ {
    order: 3;
  }
  .stats-card:nth-child(9)  /* 4番目：専門・認定 */ {
    order: 4;
  }
  .stats-card:nth-child(1), /* 病床数 */
  .stats-card:nth-child(2), /* 外来患者数 */
  .stats-card:nth-child(8), /* 年代別構成 */
  .stats-card:nth-child(9)  /* 専門・認定 */ {
    grid-column: span 2;
  }
  .stats-card:nth-child(3), /* 平均在院日数 */
  .stats-card:nth-child(4), /* 手術件数 */
  .stats-card:nth-child(5), /* 看護職員数 */
  .stats-card:nth-child(6), /* 平均年齢 */
  .stats-card:nth-child(7), /* 平均在職年数 */
  .stats-card:nth-child(10) /* 看護配置 */ {
    grid-column: span 1;
  }
}
@media (max-width: 599px) {
  .stat-label {
    font-size: var(--fs-default);
  }
  .stat-flex-row {
    gap: 0.5em;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .stat-flex-row .stat-sub-item {
    flex: 0 0 calc(50% - 0.25em);
    text-align: center;
  }
  .stat-flex-row .stat-sub-item.is-total {
    flex: 0 0 100%;
    border-top: 1px solid var(--hospital-color);
    padding-top: 0.5em;
  }
  .stats-card:nth-child(2) /* 外来患者数 */ .stat-sub-item {
    flex: 100%;
  }
  .bar-chart-area {
    justify-content: center;
    gap: 25px;
  }
}

/* 新人教育 /career/training
---------------------------------------------------------------- */
.training-timeline-list {
  position: relative;
  width: 100%;
  max-width: 800px;
  list-style: none;
  padding: 0;
}
.timeline-item {
  position: relative;
  padding-left: 2.8em;
  margin-left: 0;
  font-size: var(--fs-default);
}
.timeline-item + .timeline-item {
  margin-top: var(--space-sl);
}
.timeline-item.year-item {
  margin-top: var(--space-mm);
}

/* --- 縦の点線 --- */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 1.8em;
  top: 50%;
  bottom: 0;
  width: 3px;
  height: 100%;
  margin-top: var(--space-sl);
  background-image: linear-gradient(to bottom, var(--theme-accent) 50%, rgba(255, 255, 255, 0) 0%);
  background-size: 2px 15px;
  background-repeat: repeat-y;
}
.timeline-item.year-item::before {
  height: calc(100% + 2px);
  top: 0;
  margin-top: var(--space-sm);
}
/* 最後の項目の点線を消す場合 */
.timeline-item:last-child::before {
  display: none;
}
/* --- 日付の丸（赤丸） --- */
.month-label {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3.6em;
  height: 3.6em;
  background-color: var(--a11y-bg, var(--theme-accent));
  color: var(--theme-text-opp);
  border: var(--a11y-btn-border, transparent) 1px solid;
  border-radius: var(--br-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
  z-index: 1;
}
.year-label {
  position: absolute;
  left: 0;
  top: -1.5em;
  width: auto;
  height: auto;
  color: var(--theme-text-opp);
  border: var(--a11y-btn-border, transparent) 1px solid;
  border-radius: var(--br-ll);
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  z-index: 1;
}
/* month-label, year-label が h3 になったので、デフォルトの余白を消す */
.month-label,
.year-label {
  margin: 0;
  font-size: var(--fs-default);
}
/* --- コンテンツの箱（白背景） --- */
.timeline-content {
  position: relative;
  background: var(--theme-bg);
  border: var(--a11y-btn-border, transparent) 1px solid;
  padding: 1.5em 2em 1.5em 1.5em;
  border-radius: var(--br-m);
  box-shadow: var(--shadow);
}

.training-ttl {
  margin: 1em 0 0;
  font-size: var(--fs-default);
}
.training-txt {
  font-size: var(--fs-notes);
  margin-top: 0.5em;
}
.timeline-content .training-ttl:first-of-type {
  margin-top: 0;
}
.training-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3em 1em;
  margin-top: 0.5em;
}
.training-details li {
  font-size: var(--fs-notes);
  position: relative;
  margin-left: 0;
  padding-left: 0.8em;
  letter-spacing: 0.04em;
}
.training-details li::before {
  content: '';
  background: var(--theme-main);
  border-radius: var(--br-xl);
  width: 7px;
  height: 7px;
  font-weight: var(--fw-bold);
  display: inline-block;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.timeline-content .deco-img {
  position: absolute;
  pointer-events: none;
  box-shadow: none !important;
  filter: none !important;
}
:where(.timeline-item.item-01, .timeline-item.item-03) .txt-wrap {
  width: 70%;
}
:where(.timeline-item.item-04, .timeline-item.item-07) .txt-wrap {
  width: 75%;
}
:where(.timeline-item.item-10, .timeline-item.item-11) .txt-wrap {
  width: 55%;
}
.timeline-item.item-02::before {
  height: 120%;
}
.timeline-item.item-01 .deco-img {
  bottom: 0;
  left: 66%;
  width: clamp(225px, 22vw, 285px);
}
.timeline-item.item-02 .deco-img {
  bottom: 0;
  left: 10em;
  width: clamp(84px, 8.2vw, 105px);
}
.timeline-item.item-03 .deco-img {
  bottom: -2px;
  left: 70%;
  width: clamp(96px, 9.4vw, 120px);
}
.timeline-item.item-04 .deco-img {
  bottom: -2px;
  right: -5px;
  width: clamp(214px, 20.86vw, 267px);
}
.timeline-item.item-05 .deco-img {
  bottom: -2px;
  left: 15em;
  width: clamp(79px, 7.7vw, 98px);
}
.timeline-item.item-06 .deco-img {
  bottom: -3.8em;
  left: 13em;
  width: clamp(276px, 27vw, 348px);
}
.timeline-item.item-07 .deco-img {
  bottom: -3.2em;
  right: 1.5em;
  width: clamp(184px, 18vw, 228px);
}
.timeline-item.item-08 .deco-img {
  bottom: -1em;
  left: 21em;
  width: clamp(92px, 9vw, 114px);
}
.timeline-item.item-09 .deco-img {
  bottom: -2em;
  left: 15em;
  width: clamp(86px, 8.43vw, 108px);
}
.timeline-item.item-10 .deco-img {
  bottom: -1em;
  left: 55%;
  width: clamp(213px, 20.8vw, 266px);
}
.timeline-item.item-11 .deco-img {
  bottom: -1px;
  left: 55%;
  width: clamp(188px, 18.4vw, 236px);
}
@media (max-width: 1024px) {
  .training-timeline-list {
    max-width: 650px;
  }
  .timeline-item.item-07 .deco-img {
    bottom: -3.2em;
    right: 1.5em;
  }
  .timeline-item.item-07 .deco-img {
    bottom: -3.2em;
    right: 1.5em;
    width: clamp(184px, 18vw, 228px);
  }
}
@media (max-width: 768px) {
  .timeline-item {
    padding-left: 2em;
  }
  .timeline-item::before {
    left: 1em;
    top: 0;
    height: 100%;
  }
  .month-label {
    top: 5%;
  }
  .timeline-content {
    padding: 1.5em 1em 1.5em 1.5em;
  }
  :where(.timeline-item.item-01, .timeline-item.item-04, .timeline-item.item-10, .timeline-item.item-11) .txt-wrap {
    width: 100%;
  }
  :where(.timeline-item.item-03) .txt-wrap {
    width: 60%;
  }
  :where(.timeline-item.item-07) .txt-wrap {
    width: 50%;
  }
  .timeline-item.item-01 .timeline-content {
    padding-bottom: 10rem;
  }
  .timeline-item.item-01 .deco-img {
    bottom: 0;
    left: 40%;
  }
  .timeline-item.item-04 .timeline-content {
    padding-bottom: 5rem;
  }
  .timeline-item.item-04 .deco-img {
    bottom: -2px;
    right: 15%;
  }
  .timeline-item.item-11 .timeline-content {
    padding-bottom: 10.5em;
  }
  .timeline-item.item-11 .deco-img {
    bottom: -1px;
    left: 55%;
  }
}
@media (max-width: 599px) {
  .timeline-item.item-01 .deco-img {
    bottom: 0;
    left: 30%;
    width: min(63vw, 245px);
  }
  .timeline-item.item-04 .timeline-content {
    padding-bottom: 8rem;
  }
  .timeline-item.item-04 .deco-img {
    right: 5%;
  }
  .timeline-item.item-05 .deco-img {
    left: 72%;
    width: clamp(79px, 7.7vw, 98px);
  }
  .timeline-item.item-06 .timeline-content {
    padding-bottom: min(35%, 8em);
  }
  .timeline-item.item-06 .deco-img {
    bottom: -2.8em;
    left: auto;
    right: 5%;
    width: min(276px, 70vw);
  }
  :where(.timeline-item.item-07) .txt-wrap {
    width: 100%;
  }
  .timeline-item.item-07 .timeline-content {
    padding-bottom: 7rem;
  }
  .timeline-item.item-07 .deco-img {
    bottom: -3em;
    right: 15%;
    width: clamp(184px, 18vw, 228px);
  }
  :where(.timeline-item.item-08, .timeline-item.item-09) .txt-wrap {
    width: 70%;
  }
  .timeline-item.item-08 .timeline-content {
    padding-bottom: 2rem;
  }
  .timeline-item.item-08 .deco-img {
    bottom: -1em;
    left: auto;
    right: -2%;
    width: clamp(92px, 9vw, 114px);
  }
  .timeline-item.item-09 .deco-img {
    bottom: -2em;
    left: auto;
    right: 8%;
    width: clamp(86px, 8.43vw, 108px);
  }
  .timeline-item.item-10 .timeline-content {
    padding-bottom: 9rem;
  }
  .timeline-item.item-10 .deco-img {
    bottom: -1em;
    left: auto;
    right: 5%;
    width: clamp(213px, 20.8vw, 266px);
  }
  .timeline-item.item-11 .deco-img {
    bottom: -1px;
    left: 30%;
  }
}
/* ナース座談会
---------------------------------------------------------------- */
.discussion-member-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.discussion-member-item {
  display: flex;
  align-items: center;
  gap: 1em;
}
.discussion-member-item .img-wrap {
  width: 80px;
}
.discussion-member-item .member-name {
  font-size: var(--fs-lead);
}

/* タブリンク */
.discussion-tab-nav {
  margin-bottom: var(--space-m);
}
.discussion-tab-list {
  display: flex;
  gap: 1.5em;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid var(--theme-main);
}
.tab-item {
  flex: 1;
  margin-left: 0;
}
.tab-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  text-decoration: none;
  font-size: var(--fs-ttl-s);
  transition: all 0.3s ease;
  border: 2px solid var(--theme-main);
  border-bottom: none;
  padding: 0.5em;
}
.tab-item:first-child .tab-link {
  border-radius: var(--br-l) var(--br-l) 0 0;
  margin-right: -2px;
}
.tab-item:last-child .tab-link {
  border-radius: var(--br-l) var(--br-l) 0 0;
}
.tab-link.is-active {
  background: var(--theme-main);
  color: var(--a11y-bg, var(--theme-text-opp));
}
.tab-link:not(.is-active) {
  background: var(--theme-bg);
  color: var(--a11y-link, var(--theme-main));
}
.tab-link:focus-visible {
  outline: 3px solid var(--theme-focus);
  outline-offset: 5px;
  z-index: 1;
}
@media (max-width: 599px) {
  .discussion-tab-list {
    gap: 1em;
  }
}

/* 出身校を探す
---------------------------------------------------------------- */
/* --- タブボタン --- */
.school-tab-nav {
  gap: 15px;
}

.tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  background: var(--theme-bg);
  color: var(--theme-link);
  border: 1px solid var(--theme-border-separator);
  border-radius: var(--br-xl);
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.is-active {
  background: var(--theme-main);
  color: var(--a11y-bg, var(--theme-text-opp));
  border-color: var(--theme-main);
}

.tab-btn:hover:not(.is-active) {
  background: var(--theme-surface-blue);
}

/* --- 学校リストのデザイン --- */
.pref-table-wrap {
  margin-bottom: var(--space-ms);
}

/* 県名（ヘッダー） */
.pref-ttl {
  background-color: var(--theme-surface-blue);
  text-align: center;
  padding: 12px;
  border-radius: var(--br-m) var(--br-m) 0 0;
  border: 1px solid var(--theme-border-table);
  border-bottom: none;
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
}

/* 2列グリッドの本体 */
.school-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--theme-border-table);
  border-right: 1px solid var(--theme-border-table);
  border-bottom: 1px solid var(--theme-border-table);
  border-radius: 0 0 var(--br-m) var(--br-m);
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: var(--theme-bg);
}

.school-grid-list li {
  padding: 18px 20px;
  border-top: 1px solid var(--theme-border-table);
  border-right: 1px solid var(--theme-border-table);
  font-size: var(--fs-default);
  display: flex;
  align-items: center;
  margin-left: 0;
}
.school-grid-list li:nth-child(2n) {
  border-right: none;
}
.school-grid-list li:nth-last-child(-n + 2) {
  border-bottom: none;
}

.editor-page .js-school-pane.is-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .empty-cell {
    display: none !important;
  }
  .school-grid-list {
    grid-template-columns: 1fr;
  }
  .school-grid-list li {
    border-right: none;
    padding: 15px;
  }
}

/* 動画一覧
---------------------------------------------------------------- */
.video-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.video-thumbnail-link {
  display: block;
  position: relative;
  transition: opacity 0.3s;
}
.video-thumbnail-link:hover {
  opacity: 0.8;
}
.video-play-btn-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 43px;
  height: 30px;
  background: url('../images/common/youtube_social_icon_red.png') no-repeat center center / contain;
  transition:
    transform 0.3s,
    opacity 0.3s;
  z-index: 1;
}
/* キーボード操作時のフォーカス */
.video-thumbnail-link:focus-visible {
  outline: 3px solid var(--theme-focus);
  outline-offset: 4px;
}
.video-ttl {
  margin: var(--space-sl) 0 var(--space-ss);
}
.video-accessibility-link {
  margin-top: var(--space-ss);
}

/* 投稿（共通）archive common
---------------------------------------------------------------- */
/* カテゴリーラベル */
.cat-label {
  display: inline-block;
  padding: 0.1em 1em;
  font-size: var(--fs-notes);
  border: var(--theme-main) 1px solid;
  color: var(--theme-link);
  min-width: 100px;
  text-align: center;
  border-radius: var(--br-xs);
}

/* 記事カラム */
.col-archive {
  gap: 25px;
}
.col-archive-item {
  position: relative;
}

/* カード */
.col-archive-item.img-txt-card a {
  border-radius: var(--br-ll);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.col-archive-item.img-txt-card .img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.col-archive-item.img-txt-card .img-wrap img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
}
.col-archive-item.img-txt-card .txt-wrap {
  padding: 1em 1em 1.5em;
}
.col-archive-item.img-txt-card .cat-label {
  font-size: 12px;
  color: var(--theme-text-opp);
  background: var(--cl-cat);
  padding: 0.2em 0.8em;
}

/* 記事リスト */
.article-list li {
  transition: 0.3s all;
  background: var(--separator-bottom);
}
.article-list li a {
  display: block;
  color: var(--theme-link);
  padding: 1em 0;
}

/* 記事日付 */
.article-date {
  position: relative;
  display: block;
  color: var(--theme-text-sub);
  font-size: var(--fs-notes);
}
/* 記事タイトル */
.article-ttl {
  font-weight: var(--fw-bold);
  color: var(--theme-text);
}

/* カテゴリー、タームリスト */
.se-cat-list {
  margin-bottom: 3em;
}
.cat-list-wrap {
  position: relative;
  width: 100%;
  padding: 1em 0;
}
.cat-list {
  display: flex;
  flex-wrap: wrap;
  font-size: var(--fs-default);
  padding-right: 3em;
  gap: 0.5em;
}
.cat-list li {
  text-align: center;
}
.cat-list li a {
  font-size: var(--fs-default);
  background: var(--theme-border-table);
  color: var(--theme-text);
  padding: 0.5em 2em;
  border-radius: 20px;
}
.cat-list li.current a {
  background: var(--theme-main);
  color: var(--theme-text-opp);
}
.cat-area {
  position: relative;
}

@media only screen and (max-width: 1024px) {
  .cat-area {
    position: relative;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  .cat-area::before,
  .cat-area::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
  }
  .cat-area::before {
    width: 5%;
    left: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
  }
  .cat-area::after {
    width: 20%;
    right: 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 85%);
  }
  .cat-list-wrap {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 1em 0 1em 1.5em;
  }
  .cat-list-wrap::-webkit-scrollbar {
    display: none;
  }
  .cat-list {
    width: max-content;
    flex-wrap: nowrap;
  }
}

/* タグリスト */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  background: var(--theme-border-table);
  margin-top: 0.3em;
  border-radius: 5px;
  padding: 0.5em;
}
.tag-list li {
  padding: 0.25em;
}
.tag-list li a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1em;
  border-bottom: var(--theme-text) 1px solid;
  font-size: var(--fs-notes);
  color: var(--theme-text);
}
.tag-list a::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  font-size: 1em;
  content: '\23';
  font-weight: var(--fa-style, 900);
  color: var(--theme-main);
}

/* 投稿（共通）single common
---------------------------------------------------------------- */
.type-single .l-primary .single-article {
  padding: 0 0 1.5em;
  border-radius: var(--br-ll);
}
.type-single .l-primary .article-inner {
  max-width: 850px;
  margin: auto;
}
.article-content {
  margin: 3em 0;
}

/* 投稿サイドバー（共通）sidebar common
---------------------------------------------------------------- */
.l-secondary .sidebar-section + .sidebar-section {
  margin-top: 1.5em;
}
.sidebar-section-ttl a {
  font-size: var(--fs-lead);
  margin-bottom: 1.5em;
}
.sidebar-section ul li {
  list-style: none;
  margin-left: 0;
}
.sidebar-section li a {
  display: block;
  font-size: var(--fs-default);
}
.page-children-list li a {
  position: relative;
  padding: 0.5em 0 0.5em 1em;
  color: var(--theme-link);
  font-weight: var(--fw-bold);
}
.page-children-list li a::before {
  position: absolute;
  top: 0.85em;
  left: 0;
  font-family: var(--fa-style-family, 'Font Awesome 6 Free');
  content: '\f054';
  font-weight: var(--fa-style, 900);
  font-size: 0.8em;
  color: var(--theme-main);
  text-align: right;
}
.page-children-list li.is-current a {
  color: var(--theme-main);
  font-weight: var(--fw-bold);
  pointer-events: none;
  text-decoration: none;
}
.page-children-list li.is-current a::before {
  content: '●';
  margin-right: 0.5em;
}
.page-children-list .txt-link {
  text-decoration: none;
}
/* 基本は上端固定（短いとき用） */
.sticky-area {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: flex-start;
}
/* サイドバーが長い時にJSで付与するクラス */
.sticky-area.is-long {
  top: auto;
  bottom: 2rem;
  align-self: flex-end;
}
.sub-page-list {
  padding-left: 1em;
}
.sidebar-banner-top a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 5/2;
  background: var(--theme-main);
  border-radius: var(--br-m);
  color: var(--theme-link-opp);
  font-weight: 500;
  overflow: hidden;
  padding: 1em 0;
}
.sidebar-banner-top a::before {
  position: absolute;
  content: '';
  display: inline-block;
  background: url(../images/about/kawasaki/kawasaki_side_bnr.jpg) center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sidebar-banner-top a span {
  position: relative;
  z-index: 1;
}

/* 印刷ボタン */
.btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  width: fit-content;
  padding: 0.2em 0.8em;
  border: 2px solid var(--a11y-btn-border, var(--theme-main));
  border-radius: 25px;
  background: var(--theme-bg);
  color: var(--theme-link);
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
  cursor: pointer;
  margin-top: 20px;
}

/* 書類ダウンロードエリア */
.sidebar-download-area {
  background: var(--theme-surface-blue);
  padding: 1.5em;
  border-radius: var(--br-s);
}
.sidebar-download-ttl {
  color: var(--a11y-text, var(--theme-main));
  padding: 0.5em 0 1.5em 0;
  background: var(--separator-bottom);
}
.sidebar-download-group {
  margin-top: 1em;
}

@media (max-width: 1024px) {
  .l-secondary.is-rich-parent-page {
    border-top: none;
    padding-top: 0;
    margin-top: var(--space-ml);
  }
  .hospital-sidebar-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    width: 100%;
    gap: 0 35px;
  }
  .hospital-sidebar-inner .sidebar-section:nth-child(1) {
    flex-basis: 280px;
  }
  .hospital-sidebar-inner .sidebar-section:nth-child(2) {
    flex: 1;
    margin-top: 0 !important;
  }
  .hospital-sidebar-inner .sidebar-section:nth-child(3) {
    flex: 0 0 100%;
    margin-top: var(--space-sm) !important;
  }
  .hospital-sidebar-inner .sidebar-banner-top a {
    aspect-ratio: unset;
    max-width: 280px;
  }
  .sidebar-rich-links-wrap .children-links-section {
    background: none;
    padding: 0 0 var(--space-ss) 0;
    margin-top: 0;
  }
}
@media (max-width: 599px) {
  .hospital-sidebar-inner {
    display: block;
  }
  .hospital-sidebar-inner .sidebar-section:nth-child(2) {
    margin-top: var(--space-sm) !important;
  }
  .hospital-sidebar-inner .sidebar-banner-top a {
    aspect-ratio: 3/1;
    max-width: 100%;
  }
}

/* archive news
---------------------------------------------------------------- */

/* single news
---------------------------------------------------------------- */

/* 先輩ナース紹介 senior
---------------------------------------------------------------- */
/* セクション間の余白 */
.archive-senior-section + .archive-senior-section {
  margin-top: var(--wrap-pd);
}
/* カード全体の基本設定 */
.senior-link {
  color: var(--theme-link);
}
/* 画像 */
.senior-link .img-wrap {
  width: 92%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
.senior-link .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
/* テキスト情報の配置 */
.senior-link .txt-wrap,
.senior-prof .txt-wrap {
  position: absolute;
  bottom: 6%;
  left: 0;
  display: flex;
  flex-direction: column;
  --gap: 1.2rem;
  gap: var(--gap);
  z-index: 2;
}
/* ラベル・情報の背景（半透明） */
.senior-link .txt-wrap .shadow,
.senior-prof .txt-wrap .shadow {
  background: var(--a11y-bg, rgba(255, 255, 255, 0.85));
  padding: 0.6rem 1rem;
  width: fit-content;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
/* カテゴリー別色 */
.senior-link-category {
  border: var(--a11y-btn-border, var(--theme-base)) 2px solid;
  font-weight: 500;
}
.cat-slug-s-new {
  background-color: var(--a11y-bg, var(--theme-surface-red)) !important;
}
.cat-slug-s-senior {
  background-color: var(--a11y-bg, var(--theme-surface-yellow)) !important;
}
.cat-slug-s-new-senior {
  background-color: var(--a11y-bg, #ffd89a) !important;
}
.cat-slug-s-childcare {
  background-color: var(--a11y-bg, var(--theme-surface-blue)) !important;
}
.cat-slug-s-cn {
  background-color: var(--a11y-bg, var(--theme-surface-green)) !important;
}

/* タイトル・情報*/
.senior-link-ttl {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.senior-info {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  border: var(--a11y-btn-border, transparent) 2px solid;
}
@media only screen and (min-width: 600px) {
  .senior-slider,
  .senior-slider .splide__track {
    display: block !important;
    overflow: visible !important;
  }
  .senior-slider .splide__list.archive-senior-col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--row-gap) var(--col-gap) !important;
    transform: none !important;
    width: 100% !important;
  }
  .senior-slider .splide__slide.is-clone {
    display: none !important;
  }
  .senior-slider .splide__slide {
    width: 100% !important;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 599px) {
  .senior-slider {
    margin-right: calc(50% - 50vw) !important;
  }
  .senior-slider .splide__list {
    padding-left: 0 !important;
    --col-gap: 0.5em;
  }
  .senior-slider .splide__track {
    padding-bottom: 2.5em;
  }
  .archive-senior-col {
    display: flex !important;
  }
  .archive-senior-col-item {
    margin-right: 1.5em;
  }
  .senior-link .img-wrap.br-l {
    overflow: hidden !important;
    border-radius: var(--br-l);
  }
  .senior-link .txt-wrap {
    position: absolute;
    bottom: -1.5em;
    left: 0;
    --gap: 1.2rem;
  }
}

/* --- single プロフィール・インタビュー --- */
.senior-header .img-wrap {
  width: 95%;
  margin-left: auto;
  aspect-ratio: 4 / 3;
}
.senior-header .img-wrap img {
  object-position: center top;
}
.senior-header .senior-ttl {
  margin-bottom: 1em;
}
.senior-ttl .year {
  font-size: var(--fs-lead);
  font-weight: var(--fw-bold);
}
.senior-ttl .dept {
  font-size: var(--fs-ttl-m);
}

.interview-item + .interview-item {
  margin-top: var(--wrap-pd-s);
}
.interview-q {
  position: relative;
  padding: 2em 0 2em 1.5em;
  font-size: var(--fs-ttl-m);
  color: var(--theme-main);
  font-weight: var(--fw-bold);
  z-index: 1;
}
.interview-q::before {
  content: attr(data-num);
  position: absolute;
  top: 0;
  left: 0;
  font-size: 4em;
  font-weight: normal;
  color: var(--a11y-surface, #fcf4d2);
  line-height: 1;
  z-index: -1;
}
.interview-a {
  margin-top: 0.5em;
  line-height: 1.8;
}

@media only screen and (max-width: 599px) {
  .single-senior .senior-header .img-wrap {
    aspect-ratio: 1 / 1;
  }
  .senior-ttl .year {
    font-size: var(--fs-default);
  }
  .single-senior .senior-header .dept {
    font-size: var(--fs-lead);
  }
  .single-senior .senior-header .txt-wrap {
    --gap: 0.5rem;
  }
}

/* スペシャリスト紹介
---------------------------------------------------------------- */

/* よくある質問 faq
---------------------------------------------------------------- */
.faq-list .faq-item {
  border: var(--theme-main) 2px solid;
  border-radius: var(--br-m);
  scroll-margin-top: var(--header-height);
}
.faq-list .faq-item + .faq-item {
  margin-top: var(--space-mm);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.5em 4.5em 1.5em 1.5em;
  outline: none;
}
/* Tabキーで選択した時のフォーカスリング（アクセシビリティに必須） */
.faq-list summary:focus-visible {
  outline: 3px solid var(--theme-focus);
  outline-offset: 4px;
}
.faq-q-inner {
  display: flex;
  gap: 0.5em;
  align-items: flex-start;
}
.faq-q-label {
  font-size: 1.4em;
  color: var(--theme-main);
  line-height: 1;
  font-weight: var(--fw-bold);
}
.faq-q-txt {
  color: var(--theme-link);
  font-size: var(--fs-lead);
  margin: 0;
  line-height: 1.4;
}
.faq-icon-toggle {
  background: var(--a11y-bg, var(--theme-main));
  border-radius: 50%;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8em;
  height: 1.8em;
}
.faq-icon-toggle::before,
.faq-icon-toggle::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--theme-link-opp);
  transition: transform 0.3s ease;
}
.faq-icon-toggle::before {
  width: 60%;
  height: 2px;
}
.faq-icon-toggle::after {
  width: 2px;
  height: 60%;
  transform: rotate(0deg);
  transition: transform 0.3s ease-out;
}
.faq-item[open] .faq-icon-toggle::after {
  transform: rotate(90deg);
}
.faq-a-content {
  padding: 1.5em;
  display: flex;
  gap: 0.5em;
}
.faq-a-label {
  font-size: 1.4em;
  font-weight: var(--fw-bold);
  color: var(--theme-accent);
  line-height: 1;
  margin-top: 0.2em;
}
.faq-a-txt :first-child {
  margin-top: 0 !important;
}
@media only screen and (max-width: 599px) {
  .faq-list .faq-item + .faq-item {
    margin-top: var(--space-sl);
  }
  .faq-list summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 1em 3em 1em 1em;
    outline: none;
  }
  .faq-icon-toggle {
    right: 1em;
    width: 1.5em;
    height: 1.5em;
  }
  .faq-a-content {
    padding: 1em;
  }
}

/* 1日の流れ
---------------------------------------------------------------- */
.accordion-list .faq-item + .faq-item {
  margin-top: var(--space-sl);
}
/* カラムの横並び */
.timeline-grid {
  display: flex;
  gap: 1.5em;
  width: 100%;
}
.timeline-col {
  flex: 1;
}

/* ヘッダー（日勤・夜勤のラベル） */
.timeline-head {
  text-align: center;
  padding: 0.5em;
  color: var(--theme-text-opp);
  border-radius: var(--br-m) var(--br-m) 0 0;
  border: var(--a11y-btn-border, transparent) 1px solid;
  font-size: var(--fs-default);
  margin-bottom: 1em;
}
.col-day .timeline-head {
  background: var(--a11y-bg, var(--theme-accent));
}
.col-night .timeline-head {
  background: var(--a11y-bg, var(--theme-main));
}
.col-semi-night .timeline-head {
  background: var(--a11y-bg, var(--theme-ida));
}
/* --- タイムラインリスト --- */
.timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-list li {
  font-size: var(--fs-default);
  display: flex;
  align-items: flex-start;
  gap: 1em;
  margin: 0 0 1em 0;
  position: relative;
}
/* 点線 */
.timeline-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5em;
  bottom: 0;
  width: 0;
  height: calc(100% - 0.6em);
  border-left: 1.5px dotted var(--theme-accent);
}
.col-night .timeline-list li::after {
  border-left-color: var(--theme-main);
}
.col-semi-night .timeline-list li::after {
  border-left-color: var(--theme-ida);
}
.timeline-list li:last-child::after {
  display: none;
}
/* 時刻と時計アイコン */
.timeline-list li .time {
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--theme-accent);
  white-space: nowrap;
}
.col-night .timeline-list li .time {
  color: var(--theme-main);
}
.col-semi-night .timeline-list li .time {
  color: var(--theme-ida);
}
.timeline-list li .time::before {
  content: '\f017';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9em;
}
.timeline-list li .txt {
  line-height: 1.4;
  font-weight: var(--fw-bold);
}

/* --- イラスト --- */
.col-work-illust {
  max-width: 400px;
}
.work-illust-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  aspect-ratio: 52/48;
  background: url(../images/work-life-balance/work-style/work_illust_bg.png) center center no-repeat;
  background-size: contain;
}
.work-illust-box-inner {
  position: absolute;
  top: 25%;
  left: 12%;
  width: 74%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.work-illust-txt {
  font-size: var(--fs-default);
  font-weight: var(--fw-bold);
}
.work-illust-img {
  width: 100%;
  margin-left: -5%;
}

@media only screen and (max-width: 768px) {
  .timeline-grid {
    flex-direction: column;
  }
  .timeline-col {
    width: 100%;
  }
  .col-work-illust {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4em;
  }
}

/* 1ヶ月の勤務モデル
---------------------------------------------------------------- */
/* テーブルの基本設定 */
.table-wrapper {
  width: 100%;
  overflow-x: auto; /* スマホで横スクロール可能に */
}
.work-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 500px; /* 潰れすぎ防止 */
}
.work-table th,
.work-table td {
  border: 1px solid var(--theme-border-separator);
  text-align: center;
  padding: 5px 4px;
  vertical-align: middle;
}
.work-table th {
  background: var(--theme-bg);
  font-weight: var(--fw-bold);
}
/* 勤務バッジの共通設定 */
.badge {
  display: block;
  width: 100%;
  padding: 8px 2px;
  border-radius: var(--br-xs);
  font-size: var(--fs-notes);
  font-weight: var(--fw-bold);
  color: var(--theme-text);
}
/* 各勤務の色分け */
/* 日勤 */
.badge-day {
  background: var(--theme-surface-red);
}
/* 休み */
.badge-off {
  background: var(--theme-bg);
  color: var(--a11y-text, var(--theme-accent));
}
/* 夜勤 */
.badge-night {
  background: var(--theme-surface-blue);
}
/* 準夜勤（新しく緑にする） */
.badge-semi-night {
  background-color: var(--theme-surface-green);
}
/* 明け */
.badge-after {
  background: var(--a11y-surface, #ebebeb);
}

/* 検索結果 se-search
---------------------------------------------------------------- */
.se-search article {
  width: 100%;
  height: 100%;
  padding: 2em 0;
  background: var(--separator-bottom);
}
.se-search article a {
  color: var(--theme-link);
}
.se-search .entry-title a {
}

/* 検索結果なし / 404 not found
---------------------------------------------------------------- */
.box-none {
  padding: 100px 20px;
  border: var(--theme-border-separator) 2px solid;
}
.box-none .inner {
  max-width: 730px;
}

/* 印刷CSS print.css
---------------------------------------------------------------- */
@media print {
  /* PCサイズ(横幅)を強制的に維持し、スマホレイアウトを防ぐ */
  html,
  body {
    width: 1200px !important;
    min-width: 1200px !important;
    zoom: 0.85;
  }

  /* 印刷範囲外を完全に「物理的」に消す（白紙ページ防止） */
  header,
  footer,
  aside,
  .breadcrumbs,
  .sidebar,
  .fixed-cta-banner,
  .l-secondary,
  .nav-breadcrumb,
  .skip-link,
  .sub-hero,
  .toc-container,
  .children-links-section,
  .is-print-none,
  .btn-edit {
    display: none !important;
  }
  .children-links-section.is-parent-page {
    display: block !important;
  }
  .l-primary {
    width: 1200px !important;
    border-right: none;
    padding-right: 0;
  }

  /* 印刷範囲の設定 */
  .is-print-area {
    position: static !important; /* absoluteより改ページが安定します */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: visible !important;
  }

  .is-print-area * {
    visibility: visible !important;
  }

  /* A4サイズの設定 */
  @page {
    size: A4;
    margin: 15mm;
  }

  /* 画像の最適化 */
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid; /* 画像の途中でページが切れるのを防ぐ */
  }

  /* 背景色・背景画像を強制表示 */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* 見出し（h1-h6）のデザイン安定化 */
  .is-print-area h1,
  .is-print-area h2,
  .is-print-area h3,
  .is-print-area h4,
  .is-print-area h5,
  .is-print-area h6 {
    display: block !important;
    overflow: visible !important;
    float: none !important;
    background-clip: padding-box !important;
    page-break-after: avoid;
  }

  /* border-leftなどを使った見出しの白飛び防止 */
  .is-print-area h2 {
    border-left-color: inherit !important;
  }

  /* コンテンツ内の要素が突き抜けないようにする */
  .is-print-area * {
    max-width: 100% !important;
  }

  /* 閲覧支援のクラスがついている場合、印刷時もサイズを固定する */
  body.font-small {
    --f-scale: 0.9 !important;
  }
  body.font-large {
    --f-scale: 1.25 !important;
  }

  /* 新人教育ページ：タイムラインのスマホ版発動を阻止 --- */
  .training-timeline-list {
    width: 800px;
  }
  .timeline-item {
    padding-left: 2.8em !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
  .timeline-item::before {
    left: 1.8em !important;
    top: 50% !important;
  }
  .timeline-item.year-item::before {
    top: 0 !important;
  }
  .month-label {
    display: block !important;
    text-align: center !important;
    line-height: 3.6em !important;
    padding: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .year-label {
    display: block !important;
    text-align: center !important;
    line-height: 1.2 !important;
    padding: 0.5em 1em !important;
  }
  .year-label {
    top: 0 !important;
    transform: none !important;
  }
  .timeline-content {
    padding: 1.5em 2em 1.5em 1.5em !important;
  }
  .year-item .timeline-content {
    padding: 2.5em 2em 1.5em 1.5em !important;
  }
  /* 装飾画像やテキスト幅のPC版数値を強制 */
  :where(.timeline-item.item-01, .timeline-item.item-03) .txt-wrap {
    width: 70% !important;
  }
  :where(.timeline-item.item-04, .timeline-item.item-07) .txt-wrap {
    width: 75% !important;
  }
  :where(.timeline-item.item-10, .timeline-item.item-11) .txt-wrap {
    width: 55% !important;
  }
  .timeline-item.item-01 .deco-img {
    bottom: 0;
    left: 66%;
    width: clamp(225px, 22vw, 285px);
  }
  .timeline-item.item-04 .deco-img {
    bottom: -2px;
    right: -5px;
    width: clamp(214px, 20.86vw, 267px);
  }
  /* 印刷時に画像の下パディングが広がりすぎるのを防ぐ */
  .timeline-item.item-01 .timeline-content,
  .timeline-item.item-04 .timeline-content,
  .timeline-item.item-11 .timeline-content {
    padding-bottom: 1.5em !important;
  }
  .faq-item,
  .block-dl-list,
  .block-cta-btn-wrap {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  /* --- seniorアーカイブ：スライダー構造を解除して2カラムに固定 --- */

  /* スライダーの枠をただのコンテナにする */
  .senior-slider,
  .senior-slider .splide__track {
    display: block !important;
    overflow: visible !important;
  }
  /* リストをグリッドレイアウトに強制上書き */
  .senior-slider .splide__list.archive-senior-col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* 強制的に2カラム */
    gap: 30px 20px !important; /* 印刷時に見やすい余白 */
    transform: none !important;
    width: 100% !important;
  }
  /* スライド（カード）のサイズを100%に */
  .senior-slider .splide__slide {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
  }
  /* 複製（クローン）されたスライドは邪魔なので消す */
  .senior-slider .splide__slide.is-clone {
    display: none !important;
  }
  /* スライダーの矢印やページネーションは印刷不要 */
  .senior-slider-controls {
    display: none !important;
  }
  .senior-link .img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .senior-link .txt-wrap .senior-link-ttl {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
  }

  /* --- seniorシングル：メイン画像を印刷から除外 --- */
  .single-senior .senior-header .img-wrap {
    display: none !important;
  }
  .senior-prof .txt-wrap {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    margin-top: var(--space-ms) !important;
  }
}
