@charset "utf-8";
/* イベントカレンダーの調整 */
.fc-ltr .fc-basic-view .fc-day-number {
  text-align: center!important;
}

/* ターミナルケアを考える会 in 鎌倉 ページの修正 20220330 */
.tc-activity__header {
  text-align: center;
}

.tc-activity__ttl {
  display: inline-block;
  margin-top: var(--space-40);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 4px solid #F6BF22;
  font-size: 28px;
}

.tc-activity__txt {
  text-align: center;
}

.tc-list {
  margin-top: 32px;
  margin-bottom: var(--space-40);
}

.tc-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #707070;
  padding: 24px 0;
}

.tc-list__item:first-child {
  border-top: 1px solid #707070;
}

.tc-list__month {
  flex: 1;
  font-size: 22px;
  text-align: center;
}

.tc-list__content {
  flex: 4;
}

.tc-list__theme {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: var(--fs-17) !important;
}

.tc-list__theme span {
  display: inline-block;
  width: 76px;
  margin-right: 8px;
  background-color: #FF8D4F;
  border-radius: 4px;
  color: var(--color-white);
  font-size: var(--fs-14) !important;
  text-align: center;
}

.tc-list__teacher {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
  font-size: var(--fs-17) !important;
}

.tc-list__teacher span {
  display: inline-block;
  width: 76px;
  margin-right: 8px;
  background-color: var(--color-accent-green);
  border-radius: 4px;
  color: var(--color-white);
  font-size: var(--fs-14) !important;
  text-align: center;
}

@media (max-width: 640px) {
  .tc-activity__ttl {
    font-size: 5.6vw;
  }
  .tc-list__item {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-list__month {
    margin-bottom: var(--space-20);
    font-size: 4.8vw;
  }
  .tc-list__teacher {
    margin-bottom: 12px;
  }
}
/* スムーススクロール（旧 js/script.js の SURU ブロックを置換・2026-06-04）
   a[href^="#"] のアンカー移動をネイティブのスムーズスクロールに。 */
html {
  scroll-behavior: smooth;
}

/* アクセシビリティ（A7 2026-06-09）: skip-link とキーボードフォーカス可視化 */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  padding: 10px 20px;
  background: var(--color-brand);
  color: var(--color-white);
  font-size: var(--fs-15, 15px);
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 2px;
}
