/* ================================================================
   saikazo-home.css

   木古内町国民健康保険病院ホームページスタイル
   濃い青（#114FA1）ベース
   ================================================================ */

/* visually-hidden 強化（スライド切替時の表示防止） */
.hero .visually-hidden,
h1.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0;
  opacity: 0;
  pointer-events: none !important;
}

/* ================================================================
   ヒーローセクション
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
  margin-top: -90px; /* ヘッダー1行分を相殺してフルスクリーン */
  padding-top: 90px; /* コンテンツをヘッダー下に配置 */
}

@media (max-width: 1024px) {
  .hero {
    margin-top: -60px;
    padding-top: 60px;
    min-height: 500px;
  }
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  height: 100%;
}

.hero-swiper .swiper-slide {
  height: 100%;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* 濃い青オーバーレイ */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(17, 79, 161, 0.88) 0%,
    rgba(17, 79, 161, 0.6) 40%,
    rgba(17, 79, 161, 0.3) 100%
  );
}

.hero__content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  max-width: 600px;
}

.hero__txt-main {
  display: block;
  max-width: 500px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero__txt-main-text {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero__txt-sub {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__hospital-name {
  position: absolute;
  right: 8%;
  bottom: 30%;
  z-index: 10;
  pointer-events: none;
}

.hero__name-en {
  display: block;
  max-width: 280px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  /* テキスト用スタイル */
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.2em;
  writing-mode: horizontal-tb;
}

/* スクロールインジケーター */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
}

.hero__scroll-txt {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--color-white) 50%, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 採用バナー */
.hero__recruit-banner {
  position: absolute;
  right: 0;
  bottom: 20%;
  z-index: 20;
  background: #bf360c;
  color: var(--color-white);
  padding: 20px 30px;
  text-decoration: none;
  border-radius: 50px 0 0 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero__recruit-banner:hover {
  padding-right: 40px;
  background: #d84315;
}

.hero__recruit-en {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero__recruit-jp {
  font-size: 14px;
  font-weight: 700;
}

.hero__recruit-banner .material-symbols-outlined {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

/* ヒーローレスポンシブ対応 - タブレット */
@media (max-width: 1024px) {
  .hero__content {
    left: 5%;
    max-width: 50%;
  }

  .hero__hospital-name {
    right: 5%;
    bottom: 25%;
  }

  .hero__name-en {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    max-width: 220px;
  }
}

/* ヒーローレスポンシブ対応 - モバイル */
@media (max-width: 768px) {
  .hero__content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-align: center;
  }

  .hero__txt-main-text {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero__txt-sub {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .hero__hospital-name {
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: 15%;
    text-align: center;
  }

  .hero__name-en {
    font-size: 1rem;
    max-width: none;
    letter-spacing: 0.15em;
  }

  .hero__recruit-banner {
    padding: 12px 20px;
    bottom: 15%;
  }

  .hero__recruit-en {
    font-size: 10px;
  }

  .hero__recruit-jp {
    font-size: 12px;
  }

  .hero__scroll {
    bottom: 20px;
  }
}

/* ================================================================
   重要なお知らせ
   ================================================================ */

/* ================================================================
   桜十字スタイル ヒーローセクション（全画面）
   ================================================================ */
.sz-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  padding: 0;
  margin-top: 0;
  background: transparent;
  overflow: hidden;
}

/* お知らせ付箋（右側）- 非表示 */
.sz-hero__notice {
  display: none;
}

.sz-hero__notice:hover {
  padding-bottom: 32px;
  box-shadow: -6px 6px 28px rgba(0, 0, 0, 0.18);
}

.sz-hero__notice-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef3c7;
  border-radius: 50%;
  flex-shrink: 0;
}

.sz-hero__notice-icon .material-symbols-outlined {
  font-size: 22px;
  color: #f97316;
}

.sz-hero__notice-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  writing-mode: vertical-rl;
}

.sz-hero__notice-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 8px;
}

.sz-hero__notice-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
  color: #1a365d;
  max-height: 200px;
}

.sz-hero__notice-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  writing-mode: horizontal-tb; /* 縦書きモードを解除して矢印を横向きに */
}

.sz-hero__notice-arrow .material-symbols-outlined {
  font-size: 16px;
  color: #114FA1;
  transform: rotate(-90deg); /* 縦書き内で横向き矢印を実現 */
}

/* メイン画像エリア - 全画面・角丸 */
.sz-hero__main {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  width: auto;
  height: auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.sz-hero-swiper {
  width: 100%;
  height: 100%;
}

.sz-hero-swiper .swiper-wrapper {
  height: 100%;
}

.sz-hero-swiper .swiper-slide {
  height: 100%;
}

.sz-hero__slide {
  width: 100%;
  height: 100%;
}

.sz-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.sz-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* 画像をシャープに表示 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* ぼやけ防止 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* テキストオーバーレイ（左下）- 桜十字スタイル */
.sz-hero__content {
  position: absolute;
  left: 40px;
  bottom: 60px;
  top: auto;
  transform: none;
  z-index: 10;
  padding: 0;
  background: transparent;
  max-width: 450px;
}

.sz-hero__txt-main {
  margin-bottom: 12px;
}

.sz-hero__txt-main img {
  max-width: 760px;
  height: auto;
  filter: none;
}

/* テキストスタイル - 桜十字スタイル（白文字） */
.sz-hero__txt-main-text {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.02em;
}

.sz-hero__txt-sub img {
  max-width: 360px;
  height: auto;
  filter: none;
}

.sz-hero__txt-sub-text {
  display: block;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.15em;
  margin-top: 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

/* スクロールインジケーター（非表示） */
.sz-hero__scroll {
  display: none;
}

.sz-hero__scroll-txt {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.sz-hero__scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, #fff 50%, transparent);
  animation: scrollLineHorizontal 2s ease-in-out infinite;
}

@keyframes scrollLineHorizontal {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(10px); opacity: 0.5; }
}

/* ================================================================
   ヒーロー内ミニお知らせパネル（桜十字スタイル - 1件表示・自動スクロール）
   ================================================================ */
.sz-hero__news-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: -4px -4px 20px rgba(0, 0, 0, 0.1);
  width: 380px;
  border-radius: 24px 0 0;
  overflow: hidden;
}

.sz-hero__news-panel-inner {
  flex: 1;
  position: relative;
  height: 70px; /* 1件分の高さ */
  overflow: hidden;
}

.sz-hero__news-panel-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--sz-text, #222);
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
}

/* 最初のアイテムはデフォルトで表示（JSがまだロードされていない場合のみ） */
.sz-hero__news-panel-inner:not(.js-initialized) .sz-hero__news-panel-item:first-child {
  opacity: 1;
  transform: translateY(0);
}

.sz-hero__news-panel-item.is-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sz-hero__news-panel-item.is-exiting {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.sz-hero__news-panel-item:hover {
  background: rgba(17, 79, 161, 0.05);
}

.sz-hero__news-panel-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 55px;
  padding-right: 16px;
  border-right: 2px solid var(--sz-primary, #114FA1);
}

.sz-hero__news-panel-year {
  font-size: 0.7rem;
  color: #666;
  line-height: 1;
}

.sz-hero__news-panel-day {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
  line-height: 1.2;
}

.sz-hero__news-panel-title {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--sz-text, #222);
}

.sz-hero__news-panel-arrow {
  font-size: 20px;
  color: var(--sz-primary, #114FA1);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sz-hero__news-panel-item:hover .sz-hero__news-panel-arrow {
  opacity: 1;
}

.sz-hero__news-panel-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f8f8f8;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 70px;
}

.sz-hero__news-panel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  transition: all 0.2s ease;
}

.sz-hero__news-panel-btn:hover {
  color: var(--sz-primary, #114FA1);
  background: rgba(17, 79, 161, 0.1);
}

/* 採用バナー（右上）- saikazo.org風 丸型（管理画面対応） */
.sz-hero__recruit {
  position: absolute;
  right: 60px;
  top: 80px;
  bottom: auto;
  z-index: 30;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  background-size: cover;
  background-position: center;
  color: #1a365d;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.sz-hero__recruit--with-image {
  background-color: transparent;
}

.sz-hero__recruit--with-image .sz-hero__recruit-label,
.sz-hero__recruit--with-image .sz-hero__recruit-title {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.sz-hero__recruit:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.sz-hero__recruit-label {
  font-size: 11px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.sz-hero__recruit-title {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #1a365d;
  letter-spacing: 0.05em;
}

/* 矢印は非表示 */
.sz-hero__recruit-arrow {
  display: none;
}

/* 加須ヒーローレスポンシブ */
@media (max-width: 1024px) {
  .sz-hero {
    padding: 0 20px 20px 0;
  }

  .sz-hero__main {
    height: 70vh;
    min-height: 450px;
    border-radius: 0 0 40px 0;
  }

  .sz-hero__content {
    padding: 24px 30px;
    max-width: 450px;
    border-radius: 12px;
  }

  .sz-hero__txt-main img {
    max-width: 300px;
  }

  .sz-hero__txt-sub img {
    max-width: 150px;
  }

  .sz-hero__notice {
    right: 30px;
  }

  .sz-hero__recruit {
    right: 30px;
    top: 60px;
    bottom: auto;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .sz-hero {
    padding: 0;
    margin-bottom: 0;
  }

  .sz-hero__main {
    height: 280px;
    min-height: unset;
    max-height: none;
    border-radius: 0 0 20px 0;
  }

  .sz-hero-swiper {
    height: 100%;
  }

  .sz-hero-swiper .swiper-wrapper {
    height: 100%;
  }

  .sz-hero-swiper .swiper-slide {
    height: 100%;
  }

  .sz-hero__slide {
    height: 100%;
  }

  .sz-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sz-hero-swiper .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
  }

  .sz-hero__content {
    clip-path: none;
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 20px 16px;
    bottom: 20px;
    left: 20px;
    border-radius: 12px;
  }

  .sz-hero__txt-main-text {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .sz-hero__txt-sub-text {
    font-size: 12px;
    margin-top: 8px;
  }

  .sz-hero__txt-main img {
    max-width: 220px;
  }

  .sz-hero__txt-sub img {
    max-width: 120px;
  }

  /* お知らせ付箋をモバイルで非表示 */
  .sz-hero__notice {
    display: none;
  }

  /* 採用バナーをモバイル用に調整 */
  .sz-hero__recruit {
    right: 15px;
    bottom: auto;
    top: 15px;
    width: 90px;
    height: 90px;
  }

  .sz-hero__recruit-label {
    font-size: 9px;
    margin-bottom: 2px;
  }

  .sz-hero__recruit-title {
    font-size: 11px;
  }

  .sz-hero__scroll {
    display: none;
  }

  /* モバイルではヒーロー内ニュースパネル非表示 */
  .sz-hero__news-panel {
    display: none;
  }
}

/* 超小型モバイル */
@media (max-width: 480px) {
  .sz-hero__main {
    height: 240px;
    min-height: unset;
    max-height: none;
  }

  .sz-hero-swiper {
    height: 100%;
  }

  .sz-hero-swiper .swiper-wrapper {
    height: 100%;
  }

  .sz-hero-swiper .swiper-slide {
    height: 100%;
  }

  .sz-hero__slide {
    height: 100%;
  }

  .sz-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .sz-hero__content {
    max-width: calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 16px 14px;
    bottom: 15px;
    left: 15px;
  }

  .sz-hero__txt-main-text {
    font-size: 1.1rem;
  }

  .sz-hero__txt-sub-text {
    font-size: 11px;
  }

  .sz-hero__recruit {
    width: 80px;
    height: 80px;
    right: 10px;
    top: 10px;
  }

  .sz-hero__recruit-label {
    font-size: 8px;
  }

  .sz-hero__recruit-title {
    font-size: 10px;
  }
}
.important-notice {
  background: linear-gradient(90deg, #fff9c4, #fff59d);
  border-bottom: 3px solid #f9a825;
}

.important-notice__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}

.important-notice__label {
  background: #f9a825;
  color: var(--color-white);
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.important-notice__label .material-symbols-outlined {
  font-size: 22px;
}

.important-notice__content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 30px;
}

.important-notice__link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--sz-text, #222);
  font-size: 15px;
  width: 100%;
  transition: opacity 0.3s ease;
}

.important-notice__link:hover {
  opacity: 0.7;
}

.important-notice__link time {
  color: var(--sz-text-light, var(--color-text-secondary));
  font-size: 14px;
}

.important-notice__text {
  flex: 1;
}

.important-notice__link .material-symbols-outlined {
  color: var(--sz-primary, #114FA1);
  font-size: 20px;
}

/* ================================================================
   クイックアクセス
   ================================================================ */
.quick-guide {
  background: var(--color-white);
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
  margin-top: -60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
}

.quick-guide__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.quick-guide__item {
  border-right: 1px solid #eee;
}

.quick-guide__item:last-child {
  border-right: none;
}

.quick-guide__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  text-decoration: none;
  color: var(--sz-text, #222);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.quick-guide__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sz-primary, #114FA1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.quick-guide__link:hover {
  background: var(--sz-primary-50, #E8F0FA);
}

.quick-guide__link:hover::before {
  transform: scaleX(1);
}

.quick-guide__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sz-primary-50, #E8F0FA);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.quick-guide__link:hover .quick-guide__icon {
  background: var(--sz-primary, #114FA1);
}

.quick-guide__icon .material-symbols-outlined {
  font-size: 36px;
  color: var(--sz-primary, #114FA1);
  transition: color 0.3s ease;
}

.quick-guide__link:hover .quick-guide__icon .material-symbols-outlined {
  color: var(--color-white);
}

.quick-guide__txt {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .quick-guide {
    margin-top: -40px;
    border-radius: 12px;
  }

  .quick-guide__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-guide__item:nth-child(3) {
    border-right: none;
  }

  .quick-guide__item:nth-child(4),
  .quick-guide__item:nth-child(5),
  .quick-guide__item:nth-child(6) {
    border-top: 1px solid #eee;
  }
}

@media (max-width: 640px) {
  .quick-guide {
    margin-top: -30px;
  }

  .quick-guide__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-guide__item:nth-child(odd) {
    border-right: 1px solid #eee;
  }

  .quick-guide__item:nth-child(even) {
    border-right: none;
  }

  .quick-guide__item:nth-child(n+3) {
    border-top: 1px solid #eee;
  }

  .quick-guide__link {
    padding: 24px 12px;
  }

  .quick-guide__icon {
    width: 60px;
    height: 60px;
  }

  .quick-guide__icon .material-symbols-outlined {
    font-size: 28px;
  }

  .quick-guide__txt {
    font-size: 12px;
  }
}

/* ================================================================
   [DEPRECATED] 新着情報セクション - 削除済（news-v2を使用）
   ================================================================ */

/* ================================================================
   重要なお知らせセクション（桜十字スタイル - カード形式）
   ================================================================ */
.important-news {
  padding: 30px 40px;
  background: transparent;
}

.important-news__inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
  border-radius: 16px;
  padding: 24px 40px;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.08);
}

.important-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.important-news__item {
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.important-news__item:last-child {
  border-bottom: none;
}

.important-news__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: #dc2626;
  transition: background 0.2s ease;
  border-radius: 8px;
}

.important-news__link:hover {
  background: rgba(220, 38, 38, 0.08);
}

.important-news__icon {
  font-size: 22px;
  color: #dc2626;
  flex-shrink: 0;
}

.important-news__date {
  font-size: 0.95rem;
  font-weight: 600;
  color: #dc2626;
  letter-spacing: 0.03em;
  flex-shrink: 0;
  min-width: 95px;
}

.important-news__separator {
  width: 40px;
  height: 2px;
  background: rgba(220, 38, 38, 0.4);
  flex-shrink: 0;
}

.important-news__title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 600;
  color: #dc2626;
  line-height: 1.5;
}

.important-news__arrow {
  font-size: 20px;
  color: rgba(220, 38, 38, 0.6);
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.important-news__link:hover .important-news__arrow {
  transform: translateX(4px);
  color: #dc2626;
}

@media (max-width: 768px) {
  .important-news {
    padding: 20px 16px;
  }

  .important-news__inner {
    padding: 16px 20px;
    border-radius: 12px;
  }

  .important-news__link {
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px;
  }

  .important-news__icon {
    font-size: 18px;
  }

  .important-news__date {
    font-size: 0.85rem;
    min-width: auto;
  }

  .important-news__separator {
    width: 20px;
  }

  .important-news__title {
    flex-basis: 100%;
    padding-left: 38px;
    font-size: 0.9rem;
  }

  .important-news__arrow {
    display: none;
  }
}

/* ================================================================
   重要なお知らせバー - 非表示（桜十字スタイルでは使用しない）
   ================================================================ */
.important-notice-bar {
  display: none;
}

.important-notice-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.important-notice-bar__label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 32px;
  background: #d4e4f7;
  flex-shrink: 0;
}

.important-notice-bar__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.important-notice-bar__icon .material-symbols-outlined {
  font-size: 24px;
  color: #2E7D32;
}

.important-notice-bar__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--sz-primary);
}

.important-notice-bar__content {
  flex: 1;
  padding: 0 32px;
}

.important-notice-bar__link {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  color: var(--sz-text);
  transition: color 0.3s ease;
}

.important-notice-bar__link:hover {
  color: var(--sz-primary);
}

.important-notice-bar__link:hover .important-notice-bar__text {
  text-decoration: underline;
}

.important-notice-bar__date {
  font-size: 14px;
  color: var(--sz-text-light);
  flex-shrink: 0;
}

.important-notice-bar__text {
  font-size: 15px;
  flex: 1;
  color: var(--sz-primary);
}

.important-notice-bar__arrow {
  flex-shrink: 0;
}

.important-notice-bar__arrow .material-symbols-outlined {
  font-size: 20px;
  color: var(--sz-text-light);
}

@media (max-width: 768px) {
  .important-notice-bar {
    padding: 10px 15px;
    margin-top: -10px;
  }

  .important-notice-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .important-notice-bar__label {
    padding: 12px 16px;
    justify-content: center;
  }

  .important-notice-bar__content {
    padding: 12px 16px;
  }

  .important-notice-bar__link {
    gap: 12px;
  }
}

/* ウェアラブル/超小型 */
@media (max-width: 480px) {
  .important-notice-bar {
    padding: 8px 10px;
    margin-top: -5px;
  }

  .important-notice-bar__label {
    padding: 10px 12px;
  }

  .important-notice-bar__icon {
    width: 32px;
    height: 32px;
  }

  .important-notice-bar__icon .material-symbols-outlined {
    font-size: 18px;
  }

  .important-notice-bar__title {
    font-size: 13px;
  }

  .important-notice-bar__content {
    padding: 10px 12px;
  }

  .important-notice-bar__date {
    font-size: 12px;
  }

  .important-notice-bar__text {
    font-size: 13px;
  }
}

/* ================================================================
   クイックアクセス＋診療情報セクション（saikazo.orgスタイル）
   ================================================================ */
.guide-section {
  padding: 60px 40px;
  background: var(--color-white);
}

.guide-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* 左側: クイックアクセスカード */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: var(--color-bg-secondary);
  border-radius: 12px;
  text-decoration: none;
  color: var(--sz-text);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.guide-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.guide-card__icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.guide-card__icon-fallback {
  display: none;
  font-size: 32px;
}

/* カードカラーバリエーション */
.guide-card--green .guide-card__icon { background: #e0f2f1; }
.guide-card--green .guide-card__icon-fallback { color: #00897b; }
.guide-card--teal .guide-card__icon { background: #e0f7fa; }
.guide-card--teal .guide-card__icon-fallback { color: #00acc1; }
.guide-card--blue .guide-card__icon { background: #e3f2fd; }
.guide-card--blue .guide-card__icon-fallback { color: #1976d2; }
.guide-card--red .guide-card__icon { background: #fce4ec; }
.guide-card--red .guide-card__icon-fallback { color: #e53935; }
.guide-card--navy .guide-card__icon { background: #e8eaf6; }
.guide-card--navy .guide-card__icon-fallback { color: #3f51b5; }
.guide-card--purple .guide-card__icon { background: #f3e5f5; }
.guide-card--purple .guide-card__icon-fallback { color: #8e24aa; }

.guide-card__txt {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  color: var(--sz-text);
}

/* カードテキストカラー（WCAG AA準拠） */
.guide-card--green .guide-card__txt { color: #00695c; }
.guide-card--teal .guide-card__txt { color: #006064; }
.guide-card--blue .guide-card__txt { color: #1565c0; }
.guide-card--red .guide-card__txt { color: #c62828; }
.guide-card--navy .guide-card__txt { color: #303f9f; }
.guide-card--purple .guide-card__txt { color: #6a1b9a; }

.guide-card__arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  font-size: 18px;
  color: var(--sz-text-light);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guide-card:hover .guide-card__arrow {
  opacity: 1;
}

/* 右側: 診療受付時間・休診日 */
.guide-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.guide-info__block {
  padding: 0;
}

.guide-info__ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sz-text);
  margin-bottom: 16px;
}

.guide-info__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sz-primary);
  flex-shrink: 0;
}

.guide-info__time-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.guide-info__badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--sz-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
}

.guide-info__time {
  font-size: 18px;
  color: var(--sz-text);
}

.guide-info__time strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--sz-primary);
  font-family: var(--sz-font-en);
}

.guide-info__note {
  font-size: 13px;
  color: var(--sz-text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}

.guide-info__note--highlight {
  color: var(--sz-primary);
  font-weight: 600;
}

.guide-info__note--red {
  color: #c62828;
}

.guide-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sz-text);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.guide-info__link:hover {
  border-color: var(--sz-primary);
  color: var(--sz-primary);
}

.guide-info__link .material-symbols-outlined {
  font-size: 18px;
}

.guide-info__main {
  font-size: 16px;
  font-weight: 600;
  color: var(--sz-text);
  margin-bottom: 8px;
}

/* [DEPRECATED] guide-buttons - 削除済 */

@media (max-width: 1024px) {
  .guide-section__inner {
    grid-template-columns: 1fr;
  }

  .guide-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .guide-section {
    padding: 40px 20px;
  }

  .guide-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-card {
    padding: 24px 16px;
  }

  .guide-card__icon {
    width: 60px;
    height: 60px;
  }

  .guide-card__txt {
    font-size: 13px;
  }
}

/* ================================================================
   診療受付時間・休診日（旧スタイル - 残置）
   ================================================================ */
.reception-info {
  padding: 80px 40px;
  background: var(--color-white);
}

.reception-info__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.reception-info__block {
  padding: 30px;
  border-radius: 12px;
}

.reception-info__block--time {
  background: var(--sz-primary-50, #E8F0FA);
  border: 2px solid var(--sz-primary, #114FA1);
}

.reception-info__block--holiday {
  background: #fff3e0;
  border: 2px solid var(--sz-accent, #E65100);
}

.reception-info__ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reception-info__block--holiday .reception-info__ttl {
  color: var(--sz-accent, #E65100);
}

.reception-info__main {
  font-size: 15px;
  margin-bottom: 8px;
}

.reception-info__time {
  font-size: 14px;
  color: var(--sz-text-light, var(--color-text-secondary));
}

.reception-info__time-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
}

.reception-info__note {
  font-size: 12px;
  color: var(--sz-text-light, var(--color-text-secondary));
  margin-top: 12px;
  line-height: 1.6;
}

.reception-info__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sz-primary, #114FA1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  transition: opacity 0.3s ease;
}

.reception-info__link:hover {
  opacity: 0.7;
}

.reception-info__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reception-info__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.reception-info__btn:hover {
  background: var(--sz-primary-dark, #0D3A75);
  transform: translateX(4px);
}

.reception-info__btn .material-symbols-outlined {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .reception-info__inner {
    grid-template-columns: 1fr 1fr;
  }

  .reception-info__links {
    grid-column: span 2;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .reception-info__btn {
    flex: 1;
    min-width: 200px;
  }
}

@media (max-width: 640px) {
  .reception-info {
    padding: 40px 20px;
  }

  .reception-info__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reception-info__links {
    grid-column: span 1;
  }

  .reception-info__btn {
    min-width: auto;
  }
}

/* ================================================================
   当院の特徴 v2（saikazo.orgスタイル - 左テキスト+右カードスライダー）
   ================================================================ */
.feature-v2 {
  padding: 60px 40px; /* 統一余白 */
  background: #f8f6f2;
}

.feature-v2__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 350px 1fr; /* 左カラム幅縮小 */
  gap: 50px;
  align-items: start;
}

/* 左側: テキスト + ナビゲーション */
.feature-v2__left {
  padding-top: 25px; /* 上部パディング縮小 */
}

.feature-v2__en {
  display: block;
  font-family: var(--sz-font-en, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sz-primary, #114FA1);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.feature-v2__label {
  display: block;
  font-size: 13px;
  color: var(--sz-text-light);
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.feature-v2__ttl {
  font-size: 36px; /* フォントサイズ縮小 */
  font-weight: 700;
  line-height: 1.4;
  color: var(--sz-text);
  margin-bottom: 30px; /* マージン縮小 */
}

.feature-v2__accent {
  color: var(--sz-accent);
}

.feature-v2__nav {
  display: flex;
  flex-direction: column;
  gap: 20px; /* ギャップ縮小 */
}

.feature-v2__counter {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--sz-font-en);
}

.feature-v2__current {
  font-size: 20px;
  font-weight: 600;
  color: var(--sz-primary);
}

.feature-v2__sep {
  font-size: 14px;
  color: var(--sz-text-light);
}

.feature-v2__total {
  font-size: 14px;
  color: var(--sz-text-light);
}

.feature-v2__btns {
  display: flex;
  gap: 12px;
}

.feature-v2__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--sz-gray-300);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.feature-v2__btn:hover {
  border-color: var(--sz-primary);
  color: var(--sz-primary);
}

.feature-v2__btn .material-symbols-outlined {
  font-size: 24px;
}

/* 右側: カードスライダー */
.feature-v2__right {
  overflow: hidden;
}

/* Swiperデフォルト(overflow:hidden)を高詳細度で上書き */
.feature-v2__right .feature-v2-swiper.swiper {
  overflow: visible;
}

.feature-v2-swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.feature-v2-swiper .swiper-slide {
  width: 340px;
  flex-shrink: 0;
}

.feature-v2__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-v2__card:hover {
  transform: translateY(-4px);
}

.feature-v2__card-img {
  position: relative;
  height: 240px; /* 高さ縮小 280px → 240px */
  overflow: hidden;
}

.feature-v2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-v2__card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--sz-font-en);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.feature-v2__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
}

.feature-v2__card-label {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.feature-v2__card-ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.feature-v2__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--color-white);
  color: var(--sz-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.feature-v2__card-btn:hover {
  background: var(--sz-primary);
  color: var(--color-white);
}

.feature-v2__card-btn .material-symbols-outlined {
  font-size: 18px;
}

/* 下部リンク */
.feature-v2__links {
  max-width: 800px;
  margin: 20px auto 0; /* マージン縮小 30px → 20px */
  display: flex;
  justify-content: center;
  gap: 20px;
}

.feature-v2__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 260px;
  padding: 16px 24px; /* パディング縮小 */
  background: var(--color-white);
  border: 1px solid var(--sz-gray-300);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--sz-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-v2__link:hover {
  border-color: var(--sz-primary);
  color: var(--sz-primary);
}

.feature-v2__link .material-symbols-outlined {
  font-size: 20px;
  color: var(--sz-text-light);
}

.feature-v2__link:hover .material-symbols-outlined {
  color: var(--sz-primary);
}

@media (max-width: 1024px) {
  .feature-v2__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-v2__left {
    padding-top: 0;
    text-align: center;
  }

  .feature-v2__ttl {
    font-size: 32px;
  }

  .feature-v2__nav {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .feature-v2__links {
    flex-direction: column;
    align-items: center;
  }

  .feature-v2__link {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .feature-v2 {
    padding: 60px 0;
  }

  .feature-v2__inner {
    padding: 0 20px;
  }

  .feature-v2__ttl {
    font-size: 28px;
  }

  .feature-v2-swiper .swiper-slide {
    width: 280px;
  }

  .feature-v2__card-img {
    height: 220px;
  }

  .feature-v2__card-ttl {
    font-size: 18px;
  }
}

/* ================================================================
   当院の特徴（旧スライダー - 残置）
   ================================================================ */
.feature {
  padding: 100px 40px;
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-white) 100%);
}

.feature__header {
  text-align: center;
  margin-bottom: 60px;
}

.feature__en {
  display: block;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.feature__ttl {
  font-size: 32px;
  font-weight: 700;
  color: var(--sz-text, #222);
  margin-bottom: 16px;
}

.feature__lead {
  font-size: 18px;
  color: var(--sz-text-light, var(--color-text-secondary));
}

.feature__slider {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.feature__slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.feature__slide-img {
  height: 400px;
  overflow: hidden;
}

.feature__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__slide-content {
  padding: 40px 40px 40px 0;
}

.feature__slide-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--sz-primary-50, #E8F0FA);
  line-height: 1;
  margin-bottom: 16px;
}

.feature__slide-ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--sz-text, #222);
  margin-bottom: 16px;
}

.feature__slide-txt {
  font-size: 15px;
  line-height: 1.8;
  color: var(--sz-text-light, var(--color-text-secondary));
  margin-bottom: 24px;
}

.feature__slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature__slide-btn:hover {
  background: var(--sz-primary-dark, #0D3A75);
  transform: translateX(4px);
}

.feature__slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.feature__slider-counter {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 24px;
  color: var(--sz-text, #222);
}

.feature__slider-current {
  font-size: 36px;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
}

.feature__slider-sep {
  margin: 0 8px;
  color: #ccc;
}

.feature__slider-btns {
  display: flex;
  gap: 10px;
}

.feature__slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--sz-primary, #114FA1);
  background: var(--color-white);
  color: var(--sz-primary, #114FA1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature__slider-btn:hover {
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
}

.feature__links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.feature__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--sz-primary, #114FA1);
  color: var(--sz-primary, #114FA1);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.feature__link:hover {
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .feature {
    padding: 60px 20px;
  }

  .feature__slide {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature__slide-img {
    height: 250px;
  }

  .feature__slide-content {
    padding: 30px;
  }

  .feature__slide-num {
    font-size: 40px;
  }

  .feature__slide-ttl {
    font-size: 20px;
  }
}

/* ================================================================
   地域医療連携 V2（航空写真背景）
   ================================================================ */
.community-v2 {
  position: relative;
  padding: 60px 40px 80px;
  overflow: hidden;
  min-height: 600px;
}

.community-v2__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.community-v2__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.community-v2__header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 0;
}

.community-v2__en {
  display: block;
  font-family: var(--sz-font-en, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sz-primary, #114FA1);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.community-v2__label {
  display: none;
}

.community-v2__ttl {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sz-primary, #114FA1);
}

.community-v2__ttl .accent {
  color: var(--sz-accent, #E65100);
}

.community-v2__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.community-v2__card {
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  width: 400px;
  max-width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.community-v2__card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.community-v2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.community-v2__card-body {
  padding: 28px 32px 32px;
  flex: 1;
}

.community-v2__card-ttl {
  font-size: 20px;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
  margin-bottom: 20px;
}

.community-v2__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.community-v2__card-list li {
  border-bottom: 1px solid #e5e5e5;
}

.community-v2__card-list li:last-child {
  border-bottom: none;
}

.community-v2__card-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: var(--color-text-primary);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.community-v2__card-list a:hover {
  color: var(--sz-primary, #114FA1);
  padding-left: 8px;
}

.community-v2__card-list a .material-symbols-outlined {
  font-size: 18px;
  color: #767676;
  transition: color 0.3s ease;
}

.community-v2__card-list a:hover .material-symbols-outlined {
  color: var(--sz-primary, #114FA1);
}

@media (max-width: 900px) {
  .community-v2__cards {
    flex-direction: column;
    align-items: center;
  }

  .community-v2__card {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 768px) {
  .community-v2 {
    padding: 60px 20px 80px;
    min-height: 0; /* Firefox互換: autoの代わりに0を使用 */
  }

  .community-v2__ttl {
    font-size: 26px;
  }

  .community-v2__card-img {
    height: 140px;
  }

  .community-v2__card-body {
    padding: 24px;
  }
}

/* ================================================================
   地域医療連携（旧スタイル - 保持）
   ================================================================ */
.community {
  padding: 100px 40px;
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
}

.community__header {
  text-align: center;
  margin-bottom: 60px;
}

.community__en {
  display: block;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.community__ttl {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.community__lead {
  font-size: 18px;
  opacity: 0.9;
}

.community__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.community__card {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px); /* Safari互換 */
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
}

.community__card-ttl {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.community__card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.community__card-list li {
  margin-bottom: 12px;
}

.community__card-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
  text-decoration: none;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.community__card-list a:hover {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.community__card-list a .material-symbols-outlined {
  font-size: 18px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .community {
    padding: 60px 20px;
  }

  .community__grid {
    grid-template-columns: 1fr;
  }

  .community__card {
    padding: 30px;
  }
}

/* ================================================================
   お知らせ V2（左右分割レイアウト）
   ================================================================ */
.news-v2 {
  padding: 60px 40px;
  background: var(--color-white);
}

.news-v2__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}

.news-v2__left {
  padding-top: 10px;
}

.news-v2__en {
  display: block;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.news-v2__ttl {
  font-size: 32px;
  font-weight: 700;
  color: var(--sz-text, #222);
  margin-bottom: 24px;
}

.news-v2__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sz-text, var(--color-text-primary));
  text-decoration: underline;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.news-v2__more:hover {
  opacity: 0.7;
}

.news-v2__more .material-symbols-outlined {
  font-size: 18px;
  text-decoration: none;
}

.news-v2__right {
  flex: 1;
}

.news-v2__tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
}

.news-v2__tab {
  padding: 14px 24px;
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--sz-text-light, var(--color-text-secondary));
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.news-v2__tab:hover {
  color: var(--sz-primary, #114FA1);
}

.news-v2__tab.active {
  background: var(--color-text-primary);
  color: var(--color-white);
}

/* カテゴリ別タブカラー */
.news-v2__tab[data-category="important"] {
  color: #c62828;
}
.news-v2__tab[data-category="news"] {
  color: #1565c0;
}
.news-v2__tab[data-category="event"] {
  color: #2e7d32;
}
.news-v2__tab[data-category="recruit"] {
  color: #bf360c;
}
.news-v2__tab[data-category="bid"] {
  color: #6a1b9a;
}
.news-v2__tab.active[data-category="important"],
.news-v2__tab.active[data-category="news"],
.news-v2__tab.active[data-category="event"],
.news-v2__tab.active[data-category="recruit"],
.news-v2__tab.active[data-category="bid"] {
  color: var(--color-white);
}

.news-v2__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-v2__item {
  border-bottom: 1px dashed #ccc;
}

.news-v2__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-decoration: none;
  color: var(--sz-text, #222);
  transition: all 0.3s ease;
}

.news-v2__link:hover {
  background: #f9f9f9;
  padding-left: 16px;
  margin-left: -16px;
  margin-right: -16px;
  padding-right: 16px;
}

.news-v2__new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #c62828;
  border-radius: 50%;
  color: #c62828;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.news-v2__date {
  font-size: 14px;
  color: var(--sz-text-light, var(--color-text-secondary));
  min-width: 90px;
  flex-shrink: 0;
}

.news-v2__category {
  display: inline-block;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 3px;
  border: 1px solid currentColor;
  white-space: nowrap;
  flex-shrink: 0;
}

.news-v2__category--important {
  color: #c62828;
  border-color: #c62828;
}

.news-v2__category--news,
.news-v2__category--cat-1201 {
  color: #1565c0;
  border-color: #1565c0;
}

.news-v2__category--event {
  color: #2e7d32;
  border-color: #2e7d32;
}

.news-v2__category--recruit {
  color: #e65100;
  border-color: #e65100;
}

.news-v2__category--bid {
  color: #6a1b9a;
  border-color: #6a1b9a;
}

.news-v2__title {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

.news-v2__arrow {
  font-size: 18px;
  color: #767676;
  flex-shrink: 0;
}

.news-v2__link:hover .news-v2__arrow {
  color: var(--sz-primary, #114FA1);
}

@media (max-width: 900px) {
  .news-v2__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-v2__left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .news-v2__ttl {
    margin-bottom: 0;
    font-size: 26px;
  }

  .news-v2__tabs {
    overflow-x: auto;
    /* -webkit-overflow-scrolling: touch; -- 非推奨、削除 */
  }

  .news-v2__tab {
    padding: 12px 16px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .news-v2 {
    padding: 60px 20px;
  }

  .news-v2__link {
    flex-wrap: wrap;
    gap: 10px;
  }

  .news-v2__new {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }

  .news-v2__title {
    flex-basis: 100%;
    padding-left: 56px;
  }

  .news-v2__arrow {
    display: none;
  }
}

/* ================================================================
   専門外来
   ================================================================ */
.specialty-clinic {
  padding: 60px 40px;
  background: #f8f8f8;
}

.specialty-clinic__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.specialty-clinic__header {
  text-align: center;
  margin-bottom: 40px;
}

.specialty-clinic__en {
  display: block;
  font-family: var(--sz-font-en, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sz-primary, #114FA1);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.specialty-clinic__label {
  display: none;
}

.specialty-clinic__ttl {
  font-size: 24px;
  font-weight: 700;
  color: var(--sz-text, #222);
}

.specialty-clinic__ttl .accent {
  color: var(--sz-accent, #E65100);
}

.specialty-clinic__row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.specialty-clinic__row--3 {
  /* 3カード */
}

.specialty-clinic__row--2 {
  /* 2カード */
}

/* 4カード横並び */
.specialty-clinic__row--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.specialty-clinic__row--4 .specialty-clinic__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: unset;
  max-width: unset;
  padding: 12px 14px;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.specialty-clinic__row--4 .specialty-clinic__card--green {
  background: linear-gradient(90deg, #f9fdf9 0%, #fff 100%);
  border-left-color: #388E3C;
}

.specialty-clinic__row--4 .specialty-clinic__card-body {
  flex: 1;
  text-align: left;
}

.specialty-clinic__row--4 .specialty-clinic__card-lead {
  font-size: 10px;
  line-height: 1.4;
  margin-bottom: 3px;
  color: #666;
}

.specialty-clinic__row--4 .specialty-clinic__card-ttl {
  font-size: 12px;
  font-weight: 600;
  color: #2e7d32;
}

.specialty-clinic__row--4 .specialty-clinic__card-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border-radius: 50%;
}

.specialty-clinic__row--4 .specialty-clinic__card--green .specialty-clinic__card-icon {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.specialty-clinic__row--4 .specialty-clinic__card-icon .material-symbols-outlined {
  font-size: 18px;
  color: #e65100;
}

.specialty-clinic__row--4 .specialty-clinic__card--green .specialty-clinic__card-icon .material-symbols-outlined {
  color: #388E3C;
}

@media (max-width: 1024px) {
  .specialty-clinic__row--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .specialty-clinic__row--4 {
    grid-template-columns: 1fr;
  }
}

.specialty-clinic__row--2 {
  /* 2カード横並び - コンパクト横長デザイン */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.specialty-clinic__row--2:last-of-type {
  margin-bottom: 0;
}

.specialty-clinic__row--2 .specialty-clinic__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: unset;
  max-width: unset;
  padding: 14px 18px;
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.specialty-clinic__row--2 .specialty-clinic__card--green {
  background: linear-gradient(90deg, #f9fdf9 0%, #fff 100%);
  border-left-color: #388E3C;
}

.specialty-clinic__row--2 .specialty-clinic__card-body {
  flex: 1;
  text-align: left;
}

.specialty-clinic__row--2 .specialty-clinic__card-lead {
  font-size: 11px;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #666;
}

.specialty-clinic__row--2 .specialty-clinic__card-ttl {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

.specialty-clinic__row--2 .specialty-clinic__card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 100%);
  border-radius: 50%;
}

.specialty-clinic__row--2 .specialty-clinic__card--green .specialty-clinic__card-icon {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.specialty-clinic__row--2 .specialty-clinic__card-icon .material-symbols-outlined {
  font-size: 22px;
  color: #e65100;
}

.specialty-clinic__row--2 .specialty-clinic__card--green .specialty-clinic__card-icon .material-symbols-outlined {
  color: #388E3C;
}

.specialty-clinic__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 28px;
  text-decoration: none;
  color: var(--sz-text, #222);
  border-left: 6px solid #4CAF50;
  min-width: 300px;
  max-width: 340px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.specialty-clinic__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.specialty-clinic__card--green {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-left-color: #388E3C;
}

.specialty-clinic__card-body {
  flex: 1;
}

.specialty-clinic__card-lead {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sz-text-light, var(--color-text-secondary));
  margin-bottom: 12px;
}

.specialty-clinic__card-lead .accent {
  color: var(--sz-primary, #114FA1);
  font-weight: 600;
}

.specialty-clinic__card-ttl {
  font-size: 18px;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
}

.specialty-clinic__card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin-left: 16px;
}

.specialty-clinic__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: #fef3e0;
}

.specialty-clinic__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.specialty-clinic__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 32px;
  background: var(--color-white);
  border: 2px solid #ddd;
  border-radius: 50px;
  text-decoration: none;
  color: var(--sz-text, var(--color-text-primary));
  font-size: 15px;
  font-weight: 600;
  min-width: 300px;
  transition: all 0.3s ease;
}

.specialty-clinic__link:hover {
  border-color: var(--sz-primary, #114FA1);
  color: var(--sz-primary, #114FA1);
}

.specialty-clinic__link .material-symbols-outlined {
  font-size: 20px;
  color: var(--sz-accent, #E65100);
}

@media (max-width: 1024px) {
  .specialty-clinic__row {
    flex-wrap: wrap;
  }

  .specialty-clinic__card {
    min-width: 280px;
    max-width: none;
    flex: 1 1 calc(50% - 10px);
  }

  .specialty-clinic__row--2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .specialty-clinic__links {
    flex-direction: column;
    align-items: center;
  }

  .specialty-clinic__link {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .specialty-clinic {
    padding: 60px 20px;
  }

  .specialty-clinic__ttl {
    font-size: 24px;
  }

  .specialty-clinic__card {
    flex: 1 1 100%;
    min-width: auto;
  }

  .specialty-clinic__row--2 .specialty-clinic__card {
    padding: 12px 14px;
  }

  .specialty-clinic__row--2 .specialty-clinic__card-icon {
    width: 38px;
    height: 38px;
  }

  .specialty-clinic__card-icon {
    width: 60px;
    height: 60px;
  }

  .specialty-clinic__link {
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* ================================================================
   お知らせ（旧スタイル - 保持）
   ================================================================ */
.news {
  padding: 100px 40px;
  background: var(--color-white);
}

.news__header {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news__en {
  display: block;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.news__ttl {
  font-size: 28px;
  font-weight: 700;
  color: var(--sz-text, #222);
}

.news__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sz-primary, #114FA1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.news__more:hover {
  opacity: 0.7;
}

.news__tabs {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news__tab {
  padding: 10px 24px;
  background: var(--color-gray-100);
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--sz-text-light, var(--color-text-secondary));
  cursor: pointer;
  transition: all 0.3s ease;
}

.news__tab:hover {
  background: #eee;
}

.news__tab.active {
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
}

.news__list {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.news__item {
  border-bottom: 1px solid #eee;
}

.news__link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  color: var(--sz-text, #222);
  transition: all 0.3s ease;
}

.news__link:hover {
  background: #f9f9f9;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.news__new {
  background: #e53935;
  color: var(--color-white);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
}

.news__date {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 15px;
  color: var(--sz-text-light, var(--color-text-secondary));
  min-width: 90px;
}

.news__category {
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
}

.news__category--important {
  background: #ffebee;
  color: #c62828;
}

.news__category--news {
  background: #e3f2fd;
  color: #1565c0;
}

.news__category--event {
  background: #e8f5e9;
  color: #2e7d32;
}

.news__category--recruit {
  background: #fff3e0;
  color: #e65100;
}

.news__title {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .news {
    padding: 60px 20px;
  }

  .news__link {
    flex-wrap: wrap;
    gap: 10px;
  }

  .news__date {
    min-width: auto;
  }

  .news__title {
    flex-basis: 100%;
  }
}

/* ================================================================
   [DEPRECATED] icon-links - 削除済（sz-pickupに統合）
   ================================================================ */

/* ================================================================
   バナーエリア（非表示 - アイコンリンクに置き換え）
   ================================================================ */
.banners {
  display: none;
}

.banners__grid {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.banners__item {
  position: relative;
  display: block;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
}

.banners__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.banners__item:hover img {
  transform: scale(1.05);
}

.banners__item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.banners__item--recruit::before {
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.9), rgba(230, 81, 0, 0.6));
}

.banners__item--dialysis::before {
  background: linear-gradient(135deg, rgba(17, 79, 161, 0.9), rgba(17, 79, 161, 0.6));
}

.banners__content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banners__en {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.banners__ttl {
  font-size: 24px;
  font-weight: 700;
  margin-top: 8px;
}

.banners__sub {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banners__sub-item {
  padding: 12px 24px;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: var(--sz-text, #222);
  font-size: 14px;
  transition: all 0.3s ease;
}

.banners__sub-item:hover {
  background: var(--sz-primary-50, #E8F0FA);
  border-color: var(--sz-primary, #114FA1);
  color: var(--sz-primary, #114FA1);
}

@media (max-width: 768px) {
  .banners {
    padding: 40px 20px;
  }

  .banners__grid {
    grid-template-columns: 1fr;
  }

  .banners__item {
    height: 150px;
  }
}

/* ================================================================
   外部リンク（非表示 - 新しいバナーに置き換え）
   ================================================================ */
.external-links {
  display: none;
}

/* ================================================================
   外部バナーリンク（3つ横並び）
   ================================================================ */
.external-banners {
  padding: 60px 40px;
  background: var(--color-gray-100);
}

.external-banners__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.external-banners__item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.external-banners__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.external-banners__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .external-banners {
    padding: 40px 20px;
  }

  .external-banners__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ================================================================
   リンクカード（5つ横並び）
   ================================================================ */
.link-cards {
  padding: 60px 40px;
  background: var(--color-white);
}

.link-cards__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.link-cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  background: var(--color-white);
  border: 2px solid var(--sz-primary, #114FA1);
  border-radius: 12px;
  text-decoration: none;
  color: var(--sz-text, #222);
  min-height: 120px;
  transition: all 0.3s ease;
}

.link-cards__item:hover {
  background: rgba(17, 79, 161, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 79, 161, 0.15);
}

.link-cards__text {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}

.link-cards__arrow {
  font-size: 20px;
  color: var(--sz-primary, #114FA1);
}

@media (max-width: 1024px) {
  .link-cards__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .link-cards {
    padding: 40px 20px;
  }

  .link-cards__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .link-cards__item {
    padding: 20px 15px;
    min-height: 100px;
  }

  .link-cards__text {
    font-size: 13px;
  }
}

/* ================================================================
   採用・健診バナー
   ================================================================ */
.recruit-banners {
  padding: 0 40px 60px;
  background: var(--color-white);
}

.recruit-banners__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-banners__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.recruit-banners__main {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-white);
  height: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-banners__main:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.recruit-banners__main--recruit {
  background: linear-gradient(135deg, #f8f6f2 0%, #e8e4dc 100%);
  color: var(--sz-primary, #114FA1);
}

.recruit-banners__main-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.recruit-banners__main-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.recruit-banners__main-en {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.recruit-banners__main-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--sz-primary, #114FA1);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.recruit-banners__main-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recruit-banners__tag {
  padding: 6px 14px;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
  color: var(--sz-text, var(--color-text-primary));
}

.recruit-banners__main-img {
  width: 45%;
  position: relative;
}

.recruit-banners__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-banners__main--checkup {
  position: relative;
  background: var(--sz-primary, #114FA1);
}

.recruit-banners__main--checkup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-banners__main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(17, 79, 161, 0.9) 0%, rgba(17, 79, 161, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  z-index: 1;
}

.recruit-banners__checkup-label {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.recruit-banners__checkup-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.recruit-banners__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit-banners__sub {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 160px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-banners__sub:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.recruit-banners__sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-banners__sub-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(17, 79, 161, 0.95) 0%, rgba(17, 79, 161, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--color-white);
}

.recruit-banners__sub-overlay--beige {
  background: linear-gradient(0deg, rgba(248, 246, 242, 0.98) 0%, rgba(248, 246, 242, 0.9) 100%);
  color: var(--sz-text, var(--color-text-primary));
}

.recruit-banners__sub-label {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.recruit-banners__sub-overlay--beige .recruit-banners__sub-label {
  background: #c62828;
  color: var(--color-white);
}

.recruit-banners__sub-arrow {
  font-size: 24px;
}

@media (max-width: 1024px) {
  .recruit-banners__top {
    grid-template-columns: 1fr;
  }

  .recruit-banners__bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit-banners__bottom .recruit-banners__sub:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .recruit-banners {
    padding: 0 20px 40px;
  }

  .recruit-banners__main {
    flex-direction: column;
    min-height: 0; /* Firefox互換: autoの代わりに0を使用 */
  }

  .recruit-banners__main-left {
    padding: 24px;
  }

  .recruit-banners__main-en {
    font-size: 22px;
  }

  .recruit-banners__main-img {
    width: 100%;
    height: 150px;
  }

  .recruit-banners__checkup-text {
    font-size: 18px;
  }

  .recruit-banners__bottom {
    grid-template-columns: 1fr;
  }

  .recruit-banners__bottom .recruit-banners__sub:last-child {
    grid-column: span 1;
  }

  .recruit-banners__sub {
    min-height: 140px;
  }
}

/* ================================================================
   [DEPRECATED] action-buttons - 削除済（sz-download-v2に統合）
   ================================================================ */

/* ================================================================
   ヒーロースライド画像（インラインスタイル排除）
   ================================================================ */
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-img--1 {
  background-color: #f0f0f0;
}

.hero-slide-img--2 {
  background-color: #e0e0e0;
}

.hero-slide-img--3 {
  background-color: #d0d0d0;
}

/* ================================================================
   ピックアップセクション（桜十字スタイル）
   ================================================================ */
.sz-pickup {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e9f1f7 100%);
}

.sz-pickup__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sz-pickup__header {
  text-align: center;
  margin-bottom: 48px;
}

.sz-pickup__en {
  display: block;
  font-family: var(--sz-font-en, 'Inter', sans-serif);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sz-primary, #114FA1);
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* deprecated - 後方互換用 */
.sz-pickup__label {
  display: block;
  font-size: 0.85rem;
  color: var(--sz-primary, #114FA1);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sz-pickup__ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.05em;
}

.sz-pickup__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.sz-pickup__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sz-pickup__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sz-pickup__card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f4fc 0%, #d1e8f5 100%);
}

.sz-pickup__card-img--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sz-primary, #114FA1) 0%, #1a6fc9 100%);
  color: #fff;
  font-size: 2rem;
}

.sz-pickup__card-img--fallback::after {
  content: "📷";
  font-size: 2.5rem;
  opacity: 0.5;
}

.sz-pickup__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sz-pickup__card:hover .sz-pickup__card-img img {
  transform: scale(1.08);
}

/* アイコンタイプのカード画像 */
.sz-pickup__card-img--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sz-primary, #114FA1) 0%, #1a6fc9 100%);
}

.sz-pickup__card-img--icon .material-symbols-outlined {
  font-size: 3rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.sz-pickup__card:hover .sz-pickup__card-img--icon .material-symbols-outlined {
  transform: scale(1.1);
}

.sz-pickup__card-txt {
  display: block;
  padding: 12px 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sz-text, #222);
  text-align: center;
  line-height: 1.4;
}

/* ================================================================
   ダウンロードセクション（桜十字スタイル）
   ================================================================ */
.sz-download {
  padding: 60px 40px;
  background: var(--sz-primary, #114FA1);
}

.sz-download__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sz-download__header {
  text-align: center;
  margin-bottom: 40px;
}

.sz-download__label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.sz-download__ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.sz-download__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sz-download__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.sz-download__item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.sz-download__icon {
  font-size: 28px;
  opacity: 0.9;
}

.sz-download__txt {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ================================================================
   よくアクセスされるページ（桜十字スタイル）
   ================================================================ */
.sz-popular {
  display: flex;
  background: #fff;
}

.sz-popular__left {
  flex: 0 0 40%;
  max-width: 500px;
}

.sz-popular__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sz-popular__right {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sz-popular__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sz-primary, #114FA1);
  margin-bottom: 32px;
  padding-left: 16px;
  border-left: 4px solid var(--sz-primary, #114FA1);
}

.sz-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sz-popular__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
  background: var(--color-gray-50, #f9fafb);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sz-popular__link:hover {
  background: rgba(17, 79, 161, 0.08);
  transform: translateY(-3px);
}

.sz-popular__link-icon {
  font-size: 36px;
  color: var(--sz-primary, #114FA1);
  margin-bottom: 12px;
}

.sz-popular__link-txt {
  font-size: 0.9rem;
  color: var(--sz-text, #222);
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
}

/* レスポンシブ（桜十字スタイル新セクション） */
@media (max-width: 1024px) {
  .sz-pickup__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sz-download__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-popular {
    flex-direction: column;
  }

  .sz-popular__left {
    flex: none;
    max-width: 100%;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .sz-pickup {
    padding: 60px 20px;
  }

  .sz-pickup__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sz-pickup__card-txt {
    font-size: 0.8rem;
    padding: 10px 8px;
  }

  .sz-download {
    padding: 50px 20px;
  }

  .sz-download__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .sz-download__item {
    padding: 16px 20px;
  }

  .sz-popular__right {
    padding: 40px 20px;
  }

  .sz-popular__ttl {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }

  .sz-popular__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sz-popular__link {
    padding: 20px 12px;
  }

  .sz-popular__link-icon {
    font-size: 28px;
  }

  .sz-popular__link-txt {
    font-size: 0.8rem;
  }
}


/* ================================================================
   ダウンロードセクション v2（桜十字スタイル - カード形式）
   ================================================================ */
.sz-download-v2 {
  padding: 60px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sz-download-v2__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sz-download-v2__header {
  text-align: center;
  margin-bottom: 50px;
}

.sz-download-v2__en {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sz-download-v2__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sz-text, #222);
  letter-spacing: 0.02em;
}

.sz-download-v2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sz-download-v2__card {
  display: block;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sz-download-v2__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.sz-download-v2__card-img {
  height: 140px;
  overflow: hidden;
}

.sz-download-v2__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sz-download-v2__card:hover .sz-download-v2__card-img img {
  transform: scale(1.05);
}

.sz-download-v2__card-img--fallback {
  background: linear-gradient(135deg, var(--sz-primary, #114FA1) 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sz-download-v2__card-body {
  padding: 20px;
  position: relative;
}

.sz-download-v2__card-en {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.sz-download-v2__card-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sz-text, #222);
  line-height: 1.4;
}

.sz-download-v2__card-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--sz-primary, #114FA1);
  opacity: 0;
  transition: all 0.3s ease;
}

.sz-download-v2__card:hover .sz-download-v2__card-arrow {
  opacity: 1;
  right: 12px;
}

/* ================================================================
   よくアクセスされるページ v2（桜十字スタイル - カード形式）
   ================================================================ */
.sz-popular-v2 {
  padding: 60px 40px;
  background: #fff;
}

.sz-popular-v2__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sz-popular-v2__header {
  text-align: center;
  margin-bottom: 50px;
}

.sz-popular-v2__en {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.sz-popular-v2__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sz-text, #222);
  letter-spacing: 0.02em;
}

.sz-popular-v2__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.sz-popular-v2__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 24px;
  background: #f8fafc;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.sz-popular-v2__card:hover {
  background: #fff;
  border-color: var(--sz-primary, #114FA1);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 79, 161, 0.15);
}

.sz-popular-v2__card-icon {
  font-size: 40px;
  color: var(--sz-primary, #114FA1);
  margin-bottom: 12px;
}

.sz-popular-v2__card-en {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--sz-primary, #114FA1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sz-popular-v2__card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sz-text, #222);
  text-align: center;
  line-height: 1.4;
}

/* レスポンシブ v2 */
@media (max-width: 1024px) {
  .sz-download-v2__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sz-popular-v2__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .sz-download-v2 {
    padding: 60px 20px;
  }

  .sz-download-v2__header {
    margin-bottom: 32px;
  }

  .sz-download-v2__ttl {
    font-size: 1.4rem;
  }

  .sz-download-v2__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sz-download-v2__card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .sz-download-v2__card-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
  }

  .sz-download-v2__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sz-popular-v2 {
    padding: 60px 20px;
  }

  .sz-popular-v2__header {
    margin-bottom: 32px;
  }

  .sz-popular-v2__ttl {
    font-size: 1.4rem;
  }

  .sz-popular-v2__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sz-popular-v2__card {
    padding: 24px 12px 20px;
  }

  .sz-popular-v2__card-icon {
    font-size: 32px;
  }

  .sz-popular-v2__card-title {
    font-size: 0.8rem;
  }
}
/* ================================================================
   ウェアラブル・超小型スマホ対応 (320px以下)
   Apple Watch, Galaxy Watch, 小型スマートフォン
   ================================================================ */
@media (max-width: 320px) {
  /* ----------------------------------------------------------------
     基本設定
     ---------------------------------------------------------------- */
  body {
    font-size: max(12px, 1rem);
  }

  /* タッチターゲット最小サイズ確保 */
  a, button {
    min-height: 44px;
  }

  /* ----------------------------------------------------------------
     ヒーローセクション
     ---------------------------------------------------------------- */
  .sz-hero {
    min-height: 250px;
  }

  .sz-hero__main {
    height: 180px;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 12px;
  }

  .sz-hero__content {
    padding: 10px 12px;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 16px);
    max-width: none;
  }

  .sz-hero__txt-main-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .sz-hero__txt-sub-text {
    font-size: 10px;
    margin-top: 4px;
  }

  .sz-hero__recruit {
    width: 55px;
    height: 55px;
    right: 6px;
    top: 6px;
  }

  .sz-hero__recruit-label {
    font-size: 7px;
    margin-bottom: 1px;
  }

  .sz-hero__recruit-title {
    font-size: 8px;
    line-height: 1.2;
  }

  /* ----------------------------------------------------------------
     重要なお知らせ
     ---------------------------------------------------------------- */
  .important-news {
    padding: 12px 8px;
  }

  .important-news__inner {
    padding: 12px;
    border-radius: 8px;
  }

  .important-news__link {
    padding: 10px 8px;
    gap: 6px;
  }

  .important-news__icon {
    font-size: 16px;
  }

  .important-news__date {
    font-size: 0.75rem;
    min-width: auto;
  }

  .important-news__separator {
    width: 12px;
  }

  .important-news__title {
    flex-basis: 100%;
    padding-left: 0;
    font-size: 0.8rem;
    margin-top: 4px;
  }

  /* ----------------------------------------------------------------
     ガイドセクション
     ---------------------------------------------------------------- */
  .guide-section {
    padding: 30px 10px;
  }

  .guide-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .guide-card {
    flex-direction: row;
    padding: 14px 12px;
    gap: 12px;
    align-items: center;
  }

  .guide-card__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .guide-card__icon img,
  .guide-card__icon .material-symbols-outlined {
    font-size: 22px;
    width: 22px;
    height: 22px;
  }

  .guide-card__txt {
    font-size: 0.85rem;
    text-align: left;
  }

  .guide-card__txt br {
    display: none;
  }

  .guide-card__arrow {
    font-size: 18px;
    margin-left: auto;
  }

  .guide-info {
    padding: 16px 12px;
    margin-top: 16px;
  }

  .guide-info__ttl {
    font-size: 0.9rem;
  }

  .guide-info__time strong {
    font-size: 18px;
  }

  .guide-info__link {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  /* ----------------------------------------------------------------
     当院の特徴
     ---------------------------------------------------------------- */
  .feature-v2 {
    padding: 30px 10px;
  }

  .feature-v2__inner {
    flex-direction: column;
  }

  .feature-v2__left {
    padding: 0 0 20px;
    text-align: center;
  }

  .feature-v2__en {
    font-size: 0.65rem;
  }

  .feature-v2__label {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .feature-v2__ttl {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .feature-v2__nav {
    flex-direction: row;
    justify-content: center;
  }

  .feature-v2__right {
    width: 100%;
  }

  .feature-v2__card {
    border-radius: 12px;
  }

  .feature-v2__card-body {
    padding: 16px;
  }

  .feature-v2__card-ttl {
    font-size: 1rem;
  }

  /* ----------------------------------------------------------------
     地域医療連携
     ---------------------------------------------------------------- */
  .community-v2 {
    padding: 30px 10px;
  }

  .community-v2__header {
    margin-bottom: 24px;
  }

  .community-v2__en {
    font-size: 0.65rem;
  }

  .community-v2__label {
    font-size: 0.7rem;
  }

  .community-v2__ttl {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .community-v2__cards {
    gap: 16px;
  }

  .community-v2__card {
    width: 100%;
    border-radius: 12px;
  }

  .community-v2__card-body {
    padding: 16px;
  }

  .community-v2__card-ttl {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .community-v2__card-list li a {
    font-size: 0.8rem;
    padding: 10px 0;
  }

  /* ----------------------------------------------------------------
     専門外来
     ---------------------------------------------------------------- */
  .specialty-clinic {
    padding: 30px 10px;
  }

  .specialty-clinic__header {
    margin-bottom: 20px;
  }

  .specialty-clinic__en {
    font-size: 0.65rem;
  }

  .specialty-clinic__ttl {
    font-size: 1.1rem;
  }

  .specialty-clinic__row--4 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .specialty-clinic__card {
    flex-direction: row;
    padding: 14px;
    border-radius: 8px;
  }

  .specialty-clinic__card-body {
    flex: 1;
  }

  .specialty-clinic__card-lead {
    font-size: 0.7rem;
  }

  .specialty-clinic__card-lead br {
    display: none;
  }

  .specialty-clinic__card-ttl {
    font-size: 0.9rem;
  }

  .specialty-clinic__card-icon {
    width: 44px;
    height: 44px;
  }

  .specialty-clinic__card-icon .material-symbols-outlined {
    font-size: 22px;
  }

  .specialty-clinic__links {
    flex-direction: column;
    gap: 8px;
  }

  .specialty-clinic__link {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  /* ----------------------------------------------------------------
     お知らせ
     ---------------------------------------------------------------- */
  .news-v2 {
    padding: 30px 10px;
  }

  .news-v2__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-v2__left {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
  }

  .news-v2__en {
    font-size: 0.65rem;
  }

  .news-v2__ttl {
    font-size: 1.3rem;
  }

  .news-v2__more {
    margin-top: 12px;
  }

  .news-v2__tabs {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
  }

  .news-v2__tab {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .news-v2__item {
    padding: 10px 0;
  }

  .news-v2__link {
    flex-wrap: wrap;
    gap: 6px;
  }

  .news-v2__date {
    font-size: 0.7rem;
  }

  .news-v2__category {
    font-size: 0.6rem;
    padding: 2px 6px;
  }

  .news-v2__title {
    flex-basis: 100%;
    font-size: 0.85rem;
    padding-left: 0;
    margin-top: 4px;
  }

  .news-v2__new {
    font-size: 0.6rem;
    padding: 2px 4px;
  }

  /* ----------------------------------------------------------------
     ピックアップ
     ---------------------------------------------------------------- */
  .sz-pickup {
    padding: 30px 10px;
  }

  .sz-pickup__header {
    margin-bottom: 24px;
  }

  .sz-pickup__en {
    font-size: 0.65rem;
  }

  .sz-pickup__ttl {
    font-size: 1.3rem;
  }

  .sz-pickup__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sz-pickup__card {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
  }

  .sz-pickup__card-img {
    width: 80px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }

  .sz-pickup__card-img--icon {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sz-pickup__card-img--icon .material-symbols-outlined {
    font-size: 32px;
  }

  .sz-pickup__card-txt {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  /* ----------------------------------------------------------------
     ダウンロード
     ---------------------------------------------------------------- */
  .sz-download-v2 {
    padding: 30px 10px;
  }

  .sz-download-v2__header {
    margin-bottom: 24px;
  }

  .sz-download-v2__en {
    font-size: 0.65rem;
  }

  .sz-download-v2__ttl {
    font-size: 1.3rem;
  }

  .sz-download-v2__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sz-download-v2__card {
    display: flex;
    flex-direction: row;
    border-radius: 8px;
  }

  .sz-download-v2__card-img {
    width: 80px;
    aspect-ratio: 1/1;
    flex-shrink: 0;
  }

  .sz-download-v2__card-body {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sz-download-v2__card-en {
    font-size: 0.6rem;
  }

  .sz-download-v2__card-title {
    font-size: 0.85rem;
  }

  /* ----------------------------------------------------------------
     よくアクセスされるページ
     ---------------------------------------------------------------- */
  .sz-popular-v2 {
    padding: 30px 10px;
  }

  .sz-popular-v2__header {
    margin-bottom: 24px;
  }

  .sz-popular-v2__en {
    font-size: 0.65rem;
  }

  .sz-popular-v2__ttl {
    font-size: 1.2rem;
  }

  .sz-popular-v2__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .sz-popular-v2__card {
    flex-direction: row;
    padding: 14px 16px;
    gap: 12px;
    align-items: center;
  }

  .sz-popular-v2__card-icon {
    font-size: 28px;
    margin-bottom: 0;
  }

  .sz-popular-v2__card-en {
    font-size: 0.6rem;
    margin-bottom: 2px;
  }

  .sz-popular-v2__card-title {
    font-size: 0.85rem;
  }

  /* ----------------------------------------------------------------
     採用バナー
     ---------------------------------------------------------------- */
  .recruit-banners {
    padding: 30px 10px;
  }

  .recruit-banners__top {
    flex-direction: column;
    gap: 12px;
  }

  .recruit-banners__main {
    min-height: 120px;
    border-radius: 12px;
  }

  .recruit-banners__main-en {
    font-size: 0.9rem;
  }

  .recruit-banners__main-label {
    font-size: 0.7rem;
  }

  .recruit-banners__tag {
    font-size: 0.6rem;
    padding: 3px 8px;
  }

  .recruit-banners__bottom {
    flex-direction: column;
    gap: 8px;
  }

  .recruit-banners__sub {
    height: 80px;
    border-radius: 8px;
  }

  .recruit-banners__sub-label {
    font-size: 0.75rem;
  }

  /* ----------------------------------------------------------------
     外部バナー
     ---------------------------------------------------------------- */
  .external-banners {
    padding: 20px 10px;
  }

  .external-banners__inner {
    flex-direction: column;
    gap: 10px;
  }

  .external-banners__item {
    height: 50px;
    border-radius: 6px;
  }

  .external-banners__item img {
    max-height: 100%;
    width: auto;
  }
}
