:root {
  --primary-color: #2c4a6b;
  --secondary-color: #a89bc9;
  --accent-color: #f5efe6;
  --text-color: #333333;
  --border-radius: 8px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 全体的な横揺れ・横スクロール防止 */
html,
body {
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
.font-serif {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
}

.font-accent {
  font-family: 'Homemade Apple', cursive;
}

/* Section Common Spacing */
section {
  padding-top: clamp(3rem, 7vw, 7rem);
  padding-bottom: clamp(3rem, 7vw, 7rem);
  width: 100%;
  overflow: hidden; /* セクション外へのハミ出しを防止 */
  box-sizing: border-box;
}

/* Custom Utilities */
.text-shadow-sm {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bg-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Alpine.js cloak */
[x-cloak] {
  display: none !important;
}

/* Material Symbols Adjustments */
.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 300,
    'GRAD' 0,
    'opsz' 24;
  vertical-align: middle;
}

/* Animation Tweaks */
[data-aos] {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ヒーロー固定ボタンがある場合の余白確保（スマホのみ） */
@media (max-width: 767px) {
  body {
    padding-bottom: 60px;
  }
}

/* Extracted from Templates */
/* From ./parts/index-hero.html */

.index-hero {
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.index-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/index-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.index-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(44, 74, 107, 0) 0%, rgba(44, 74, 107, 0.7) 100%);
  z-index: 2;
}

.index-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.index-hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.index-hero-fixed-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .index-hero-fixed-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .index-hero-overlay {
    background: rgba(44, 74, 107, 0.5);
  }
  .index-hero-content {
    justify-content: center;
    text-align: left;
    padding: 0 1.5rem;
  }
  .index-hero-title {
    white-space: normal;
    word-break: keep-all;
  }
}

/* From ./parts/index-message.html */

.section-message {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}
.section-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c4a6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.message-container {
  position: relative;
  z-index: 1;
}
.philosophy-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}
.director-image-wrapper {
  position: relative;
  max-width: 100%;
}
.director-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  z-index: -1;
}
.map-comparison {
  background: var(--primary-color);
  color: white;
  border-radius: 1rem;
}
.font-accent-title {
  font-family: 'Homemade Apple', cursive;
  color: var(--secondary-color);
}
.director-headline {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-color);
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* From ./parts/index-on-work.html */

#on-work {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}

#on-work .section-title-accent {
  color: var(--secondary-color);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

#on-work .card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

#on-work .work-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary-color);
}

#on-work .work-card:hover {
  transform: translateY(-5px);
}

#on-work .work-card .icon-box {
  width: 60px;
  height: 60px;
  background: rgba(44, 74, 107, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

#on-work .work-card .icon-box .material-symbols-outlined {
  font-size: 32px;
  color: var(--primary-color);
}

#on-work .work-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

#on-work .work-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-color);
  opacity: 0.9;
}

#on-work .flow-container {
  margin-top: 5rem;
  padding: 3rem;
  background: var(--primary-color);
  border-radius: 12px;
  color: #ffffff;
}

#on-work .flow-container .flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  #on-work .flow-container .flow-grid {
    grid-template-columns: 1fr auto 1.2fr auto 1fr;
    align-items: center;
  }
}

#on-work .flow-container .flow-item {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
}

#on-work .flow-container .flow-item .label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.5rem;
  display: block;
  color: #ffffff;
}

#on-work .flow-container .flow-item .title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

#on-work .flow-container .flow-arrow {
  display: flex;
  justify-content: center;
  opacity: 0.7;
  color: #ffffff;
}

#on-work .flow-container .flow-arrow span {
  font-size: 32px;
}

@media (min-width: 1024px) {
  #on-work .flow-container .flow-arrow {
    transform: rotate(0deg);
  }
}

@media (max-width: 1023px) {
  #on-work .flow-container .flow-arrow {
    transform: rotate(90deg);
  }
}

/* From ./parts/index-dialogue.html */

.dialogue-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.dialogue-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#a89bc9 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.1;
  pointer-events: none;
}
.dialogue-card {
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  height: 100%;
  border: 1px solid rgba(44, 74, 107, 0.08);
}
.dialogue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 74, 107, 0.1);
}
.dialogue-number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #a89bc9;
  opacity: 0.3;
  font-size: 3rem;
  line-height: 1;
}
.support-card {
  background: linear-gradient(135deg, #f5efe6 0%, #ffffff 100%);
  border-left: 4px solid #a89bc9;
}
.ladder-step {
  position: relative;
  padding-left: 2rem;
}
.ladder-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #a89bc9, transparent);
}

/* From ./parts/index-respect.html */

.section-respect {
  background-color: #fdfaf6;
  position: relative;
  overflow: hidden;
}
.section-respect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#a89bc9 0.5px, transparent 0.5px);
  background-size: 24px 24px;
  opacity: 0.1;
  pointer-events: none;
}
.respect-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(44, 74, 107, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid rgba(168, 155, 201, 0.1);
}
.respect-card:hover {
  transform: translateY(-5px);
}
.respect-icon-box {
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}
.director-message-box {
  background: #ffffff;
  padding: 3.5rem;
  position: relative;
}
.director-message-box::after {
  content: 'Dialogue';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Homemade Apple', cursive;
  font-size: 2.5rem;
  color: var(--secondary-color);
  opacity: 0.08;
}
.nurse-quote {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
  font-weight: 700;
  line-height: 1.6;
  color: var(--primary-color);
}
/* 院長デザインに合わせた写真装飾 */
.director-photo-wrapper {
  position: relative;
}
.director-photo-wrapper::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--secondary-color);
  z-index: 0;
}

/* From ./parts/index-off-life.html */

.off-life-section {
  background-color: var(--accent-color);
  overflow: hidden;
}

.off-life-section .section-title-accent {
  font-family: 'Homemade Apple', cursive;
  color: var(--secondary-color);
}

.off-life-section .photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .off-life-section .photo-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.off-life-section .photo-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.off-life-section .photo-card:hover {
  transform: translateY(-5px);
}

.off-life-section .photo-card:hover .photo-overlay {
  opacity: 1;
}

.off-life-section .photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.off-life-section .photo-card .photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 74, 107, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.off-life-section .photo-card .photo-caption {
  color: white;
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 500;
}

.off-life-section .feature-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
  border-bottom: 4px solid var(--secondary-color);
}

/* From ./parts/index-condition.html */

.section-condition {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.condition-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(44, 74, 107, 0.05);
}

.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 64px;
  height: 64px;
  background-color: #f5efe6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-box .material-symbols-outlined {
  font-size: 32px;
  color: #2c4a6b;
}

.highlight-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #a89bc9;
  line-height: 1;
  margin: 0 0.2rem;
}

.condition-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #2c4a6b;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* From ./parts/index-education.html */

.education-section {
  background-color: var(--white);
  overflow: hidden;
}

.education-section .section-title-group {
  text-align: center;
  margin-bottom: 4rem;
}

.education-section .section-title-group .main-title {
  color: var(--primary-color);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.education-section .section-title-group .sub-title {
  color: var(--secondary-color);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.education-section .timeline-container {
  position: relative;
  padding: 2rem 0;
  /* 不要な水平線の擬似要素を削除 */
}

.education-section .timeline-step {
  position: relative;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: transform 0.3s ease;
  height: 100%;
  border-left: 4px solid var(--secondary-color);
}

.education-section .timeline-step:hover {
  transform: translateY(-5px);
}

.education-section .timeline-step .step-period {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.education-section .timeline-step .step-title {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.education-section .timeline-step .step-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  opacity: 0.9;
}

.education-section .ladder-card {
  background: var(--accent-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  position: relative;
}

.education-section .ladder-card .ladder-step-item {
  background: white;
  padding: 1rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-weight: 700;
  box-shadow: var(--box-shadow);
  color: var(--primary-color);
  border: 1px solid rgba(44, 74, 107, 0.1);
}

.education-section .ladder-card .ladder-step-item.active {
  background: var(--primary-color);
  color: white;
}

.education-section .point-box {
  border: 1px dashed var(--secondary-color);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  height: 100%;
}

.education-section .point-box .point-icon {
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}

/* From ./parts/index-group.html */

.index-group {
  background-color: #f8f9fa;
  overflow: hidden;
}

.index-group .network-map-container {
  position: relative;
  filter: drop-shadow(0 10px 20px rgba(44, 74, 107, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

/* 円形の背景装飾 */
.index-group .map-circle-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f5efe6;
  border-radius: 9999px;
  z-index: 0;
}

.index-group .card-merit {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  height: 100%;
}

.index-group .card-merit:hover {
  transform: translateY(-5px);
}

.index-group .comparison-box {
  background: #ffffff;
  border-left: 4px solid var(--secondary-color);
}

/* From ./parts/index-scholarship.html */

.scholarship-section {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
.scholarship-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 155, 201, 0.05) 0%, transparent 70%);
  z-index: 0;
}
.step-card {
  position: relative;
  background: #ffffff;
  transition: transform 0.3s ease;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--secondary-color);
  font-size: 3rem;
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
}
.flow-arrow::after {
  content: 'arrow_forward';
  font-family: 'Material Symbols Outlined';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--secondary-color);
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .flow-arrow::after {
    content: 'arrow_downward';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1.5rem;
    transform: translateX(-50%);
  }
}
.support-card {
  border-left: 4px solid var(--secondary-color);
  background: #f9f9f9;
}

/* From ./parts/index-midwife.html */

.midwife-section {
  position: relative;
  overflow: hidden;
  background-color: var(--accent-color);
}
.midwife-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(168, 155, 201, 0.05));
  pointer-events: none;
}
.midwife-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}
.midwife-card:hover {
  transform: translateY(-5px);
}
.midwife-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.midwife-accent-text {
  font-family: 'Homemade Apple', cursive;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 0.5rem;
}

/* From ./parts/index-cost.html */

.index-cost {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}
.index-cost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c4a6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cost-comparison-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.bar-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.bar-item {
  width: 100%;
}
.bar-label {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bar-track {
  height: 36px;
  background: #f0f0f0;
  border-radius: 18px;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.bar-fill {
  height: 100%;
  border-radius: 18px;
  transition: width 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  align-items: center;
  position: relative;
  min-width: 4px;
}
.bar-text {
  position: absolute;
  left: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: white;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}
/* グラフが短い、またはスマホ環境で文字がはみ出す場合の制御 */
.bar-fill.is-short .bar-text {
  color: #333;
  left: calc(100% + 0.75rem);
}

/* スマホサイズ(768px未満)では、特定の長さ以下のグラフはすべて外出しにする */
@media (max-width: 767px) {
  .bar-fill.mobile-short .bar-text {
    color: #333;
    left: calc(100% + 0.5rem);
  }
}

.bar-fill.tokyo {
  background: #e53e3e;
}
.bar-fill.furano {
  background: #2c4a6b;
}

.cost-highlight-box {
  border-left: 4px solid #a89bc9;
  background: rgba(168, 155, 201, 0.05);
}

/* From ./parts/index-voices.html */

#voices {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
}
#voices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232c4a6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.voice-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.voice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.voice-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}
.voice-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.voice-card:hover .voice-image-wrapper img {
  transform: scale(1.05);
}
.voice-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: #ffffff;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 20px;
  z-index: 2;
}
.voice-title {
  font-family: 'Homemade Apple', cursive;
  color: var(--secondary-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.voice-content {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #4b5563;
  text-align: justify;
}
.voice-content p {
  margin-bottom: 1rem;
}

/* From ./parts/index-overview.html */

.overview-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.overview-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 155, 201, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hospital-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(44, 74, 107, 0.05);
  border: 1px solid rgba(44, 74, 107, 0.05);
}

.floor-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1px;
  background-color: rgba(44, 74, 107, 0.1);
  border: 1px solid rgba(44, 74, 107, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.floor-label {
  background-color: #2c4a6b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 1rem 0;
}

.floor-content {
  background-color: #ffffff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.dept-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9999px;
  font-size: 0.85rem;
  color: #2c4a6b;
  transition: all 0.3s ease;
}

.dept-tag:hover {
  border-color: #a89bc9;
  background-color: #f5efe6;
  transform: translateY(-2px);
}

.stat-box {
  border-left: 3px solid #a89bc9;
  padding-left: 1.5rem;
}

/* From ./parts/index-access.html */

.section-access {
  background-color: #ffffff;
  position: relative;
}
.access-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
.map-container {
  filter: grayscale(0.2) contrast(1.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .map-container {
    height: 400px;
  }
}
.accent-badge {
  background-color: var(--secondary-color);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-weight: bold;
}

/* From ./parts/index-cta.html */

.section-cta {
  position: relative;
  overflow: hidden;
  background-color: #1a2e44;
  color: #ffffff;
}
.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../img/index-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
.cta-container {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-heading {
  font-family: 'Playfair Display', 'Noto Sans JP', serif;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.cta-description {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.cta-mail-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-top: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-all;
}
.cta-mail-link:hover {
  color: #a89bc9;
}
.check-list-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ffffff;
}
