@charset "UTF-8";

/* =========================
   追加・上書き用（cmn.cssの後に読み込む）
   asideの背景画像（帯バナー）用
========================= */

/* 汎用：このclassを付けたasideを背景画像にする */
.aside-bg {
  /* ↓画像パスだけ差し替え */
  background-image: url('/assets/images/mv_1920x243.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;

  /* 1920×243 の比率に合わせた固定高さ（PC想定） */
  height: 243px;
  width: 100%;

  /* 余計な余白があれば消す */
  margin: 0;
  padding: 0;
}

/* 中にテキスト等があるなら、読みやすくしたい時はこれ */
.aside-bg__inner {
  height: 100%;
  display: flex;
  align-items: center;
}

/* レスポンシブ：SPで高さだけ少し縮める（好みで調整） */
@media (max-width: 768px) {
  .aside-bg {
    height: 120px;
    background-position: center;
  }
}
/* ----------------------------
   丸ボタン（もっと見る風）
---------------------------- */

.c-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 0 50px 0 10px;
  min-width: 240px;
  height: 50px;
  border: none;
  background: #f6a43a;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;

  border-radius: 999px;
  box-shadow: 0 6px 0 rgb(244, 135, 4);

  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

/* 右の白い丸 */
.c-btn a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  background: #fff;
  color: #f6a43a;
  border-radius: 50%;

  font-size: 14px;
  line-height: 1;
}

.chuo {
  align-self: center;
}

/* ホバー */
.c-btn a:hover {
  transform: translateY(2px);
  /* opacity: 0.95; */
  box-shadow: 0 4px 0 rgb(244, 135, 4);
}

/* スマホは幅広めに */
@media (max-width: 480px) {
  .c-btn a {
    min-width: 90%;
    padding: 16px 18px;
    align-content: center;
  }
}
/* ----------------------------
   ARC03: 理念（左文章＋右写真）
---------------------------- */

.top-message .message-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-message .text-area {
  flex: 1;
}

.top-message .img-area {
  flex: 1;
}

.top-message .img-area img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* 文章 */
.top-message .message-lead {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.top-message .message-body p {
  line-height: 1.9;
  margin: 0 0 10px;
}

/* ボタン配置：左寄せ */
.c-btn.btn-left {
  text-align: left;
  margin-top: 18px;
}

/* 既存の .c-btn a がある前提（オレンジ丸ボタン） */

/* SPは縦並び（文章→写真） */
@media (max-width: 768px) {
  .top-message .message-wrap {
    flex-direction: column;
  }
}
/* Section */
.tokoton-points {
  padding: 56px 0;
}

.tokoton-points__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.tokoton-points__title {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

/* Grid */
.tokoton-points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Card */
.tokoton-card,
.tokoton-mini {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 22px 20px 20px;
  min-height: 260px; /* 縦長カード感 */
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  display: grid;
  align-content: start;
  gap: 10px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.tokoton-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

/* Icon */
.tokoton-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;

  /* ここでアイコン色を一括管理 */
  color: #1f6f5b;

  /* 背景（薄いアクセント） */
  background: rgba(31, 111, 91, 0.1);
}

.tokoton-card__headline {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.02em;
}

.tokoton-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
}

/* Responsive (SP) */
@media (max-width: 820px) {
  .tokoton-points {
    padding: 42px 0;
  }
  .tokoton-points__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tokoton-card {
    min-height: auto;
    padding: 18px 16px;
  }
  .tokoton-card__headline {
    font-size: 17px;
  }
}
/* Section */
/* .activity {
  padding: 56px 0;
} */

.activity__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.activity__title {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

/* Item */
.activity-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* 写真大きめ */
  gap: 22px;
  align-items: center;
  padding: 22px;
  margin: 0 0 18px;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

/* Reverse (画像右) */
.activity-item--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.activity-item--reverse .activity-item__media {
  order: 2;
}
.activity-item--reverse .activity-item__body {
  order: 1;
}

/* Media */
.activity-item__media {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9; /* 横長固定 */
}

/* 写真を左右に「ちょいズラし」 */
.activity-item .activity-item__media {
  transform: translateX(-6px);
}
.activity-item--reverse .activity-item__media {
  transform: translateX(6px);
}

.activity-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

/* Body */
.activity-item__heading {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.activity-item__text {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.72);
}

/* Link */
.activity-item__link {
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
  color: #1f6f5b;
  border-bottom: 1px solid rgba(31, 111, 91, 0.35);
  padding-bottom: 2px;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}
.activity-item__link:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

/* Responsive */
@media (max-width: 860px) {
  .activity {
    padding: 42px 0;
  }

  .activity-item,
  .activity-item--reverse {
    grid-template-columns: 1fr; /* 縦並び */
    padding: 16px;
    gap: 14px;
  }

  /* SPでは順番を統一：写真→文章 */
  .activity-item__media,
  .activity-item--reverse .activity-item__media {
    order: 1;
    transform: none;
  }
  .activity-item__body,
  .activity-item--reverse .activity-item__body {
    order: 2;
  }

  .activity-item__heading {
    font-size: 17px;
  }
}
.parallel-links {
  padding: 56px 0;
}

.parallel-links__inner {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.parallel-links__title {
  text-align: center;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.parallel-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* Card */
.p-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.p-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    opacity 0.18s ease;
}

.p-card__link:hover {
  transform: translateY(-2px);
  opacity: 0.98;
}

/* Media */
.p-card__media,
.p-card__media2 {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.p-card__media img,
.p-card__media2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform 0.22s ease;
}

.p-card__link:hover .p-card__media img,
.p-card__link:hover .p-card__media2 img {
  transform: scale(1.06);
}

/* （任意）写真に薄いグラデ：下側を少しだけ暗くして文字と馴染ませる */
.p-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

/* ほんのり明るくする */
.p-card__media2::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.6) 35%,
    rgba(255, 255, 255, 0) 70%
  );
}

/* 中央配置 */
.p-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* 2行キャッチ */
.p-card__catch {
  font-family: 'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  color: #5a5a5a;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

/* 1行目 */
.p-card__catch .line1 {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

/* 2行目 */
.p-card__catch .line2 {
  display: block;
  font-size: 28px;
  font-weight: 900;
}

/* SP調整 */
@media (max-width: 768px) {
  .p-card__catch .line1 {
    font-size: 16px;
  }
  .p-card__catch .line2 {
    font-size: 20px;
  }
}

.p-card__body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 8px;
}

.p-card__heading {
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.02em;
}

.p-card__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.72);
}

.p-card__cta {
  display: inline-block;
  font-size: 14px;
  color: #1f6f5b;
  border-bottom: 1px solid rgba(31, 111, 91, 0.35);
  padding-bottom: 2px;
  width: fit-content;
}

/* SP */
@media (max-width: 860px) {
  .parallel-links {
    padding: 42px 0;
  }

  .parallel-links__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .p-card__body {
    padding: 14px 14px 16px;
  }
}

/* ▼ Access */
.top-access .access-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* SP：詳細が先、地図は下でOK */
.top-access .access-info {
  order: 1;
}
.top-access .access-map {
  order: 2;
}

.top-access .access-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.top-access .access-map iframe {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  display: block;
}

/* Tabs */
.access-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 14px;
}
.access-tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 14px 12px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.access-tab.is-active {
  border-color: rgba(31, 111, 91, 0.35);
  background: rgba(31, 111, 91, 0.1);
}

/* Info panel */
.access-name {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.access-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.access-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 5px;
  align-items: start;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}
.access-list i {
  margin-top: 2px;
  color: #1f6f5b;
}
.access-tel {
  color: #1f6f5b;
  text-decoration: none;
  /* border-bottom: 1px solid rgba(31, 111, 91, 0.35); */
}

/* Buttons（大きく） */
.access-buttons {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.access-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 14px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}
.access-btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}
.access-btn--primary {
  background: #1f6f5b;
  color: #fff;
}
.access-btn--ghost {
  background: #fff;
  color: #1f6f5b;
  border: 1px solid rgba(31, 111, 91, 0.35);
}

/* PC：左Map 右詳細 */
@media (min-width: 900px) {
  .top-access .access-box {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 18px;
    align-items: start;
  }
  .top-access .access-map {
    order: 1;
  }
  .top-access .access-info {
    order: 2;
  }
  .top-access .access-map iframe {
    aspect-ratio: 4 / 3;
  }
}

/* ----------------------------
   理念セクション
---------------------------- */

.philosophy {
  background: #fafafa;
}

/* 共通 */
.philosophy-sec {
  padding: 64px 0;
}

.philosophy-sec--common {
  background: linear-gradient(180deg, #fff5ec, #fffaf5);
}

.philosophy-sec--soft {
  background: linear-gradient(180deg, #fff5ec, #fffaf5);
}

.philosophy-inner {
  width: min(900px, 92%);
  margin: 0 auto;
}

.philosophy-title {
  text-align: center;
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 28px;
}

.philosophy-subtitle {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 20px;
}

.philosophy-subtitle span {
  font-size: 0.8em;
  color: #1f6f5b;
}

/* Text */
.philosophy-text p {
  line-height: 2;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.75);
}

.philosophy-lead {
  font-weight: 700;
  color: #1f6f5b;
}

/* Points */
.philosophy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.philosophy-points li {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  font-weight: 600;
}

/* SP */
@media (max-width: 768px) {
  .philosophy-sec {
    padding: 44px 0;
  }
}
/* Split layout */
.philosophy-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

/* SP優先：写真→文章の順にする */
.philosophy-split__media {
  order: 1;
}
.philosophy-split__text {
  order: 2;
}

/* Media */
.philosophy-split__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}
.philosophy-split__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}

/* PC：左文章＋右写真 */
@media (min-width: 900px) {
  .philosophy-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
  }
  .philosophy-split__text {
    order: 1;
  }
  .philosophy-split__media {
    order: 2;
  }

  /* 変化用：香芝だけ左右逆 */
  .philosophy-split--reverse .philosophy-split__media {
    order: 1;
  }
  .philosophy-split--reverse .philosophy-split__text {
    order: 2;
  }
}
.philosophy-split__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.philosophy-split__media img {
  filter: brightness(1.05) contrast(0.9) saturate(0.92);
  transition: 0.3s ease;
}

.philosophy-split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 60%);
  pointer-events: none;
}

/* ----------------------------
   活動紹介ページ共通スタイル
/* Layout */
.activity-page {
  padding: 24px 0 56px;
}

.activity-layout {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  align-items: start;
}

/* PC TOC (sticky) */
.toc-aside {
  position: sticky;
  top: 18px;
  height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 16px;
}

.toc {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.toc__inner {
  padding: 14px 14px 16px;
}

.toc__title {
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.toc__group {
  margin: 10px 0 14px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.03);
}

.toc__groupTitle {
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 8px;
  color: #1f6f5b;
}

.toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.toc__link {
  display: block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    color 0.15s ease;
  font-size: 14px;
  line-height: 1.3;
}

.toc__link:hover {
  background: rgba(31, 111, 91, 0.1);
  transform: translateX(2px);
}

.toc__link.is-active {
  background: rgba(31, 111, 91, 0.14);
  color: #0f3f34;
  font-weight: 800;
  border: 1px solid rgba(31, 111, 91, 0.25);
}

/* Content */
.activity-content {
  min-width: 0;
}

/* SP：折りたたみ目次 */
.toc-sp {
  width: min(1200px, 92%);
  margin: 0 auto 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.toc-sp__summary {
  padding: 14px 14px;
  cursor: pointer;
  font-weight: 800;
}

.toc--sp .toc__inner {
  padding-top: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .activity-layout {
    grid-template-columns: 1fr;
  }

  .toc-aside {
    display: none; /* SPでは左固定を消す */
  }
}

@media (min-width: 961px) {
  .toc-sp {
    display: none; /* PCでは折りたたみを消す */
  }
}

:root {
  --anchor-offset: 90px;
} /* 固定ヘッダーがあるなら調整 */

.activity-section section[id] {
  scroll-margin-top: var(--anchor-offset);
}
/* 拠点タイトル（戻るリンク） */
.toc__groupTitleLink {
  display: block;
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 8px;
  color: #1f6f5b;
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 12px;
  transition:
    background 0.15s ease,
    transform 0.15s ease;
}
.toc__groupTitleLink:hover {
  background: rgba(31, 111, 91, 0.1);
  transform: translateX(2px);
}
.back-to-section {
  margin-top: 18px;
  text-align: right;
}

.back-to-section__link {
  font-size: 13px;
  text-decoration: none;
  color: #1f6f5b;
  border-bottom: 1px solid rgba(31, 111, 91, 0.35);
  padding-bottom: 2px;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}

.back-to-section__link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ======================
   子セクション内に activity-hero がある場合の基本レイアウト
====================== */

#activityContent .activity-section > section[id] .activity-hero{
  display: grid;
  grid-template-columns: 1fr 1fr; /* 画像4：テキスト6 */
  gap: 18px;
  align-items: center;
  margin: 14px 0 18px;
  min-width: 0;
}

/* テキスト側がはみ出さないように */
#activityContent .activity-section > section[id] .activity-hero__body{
  min-width: 0;
}

/* 画像枠 */
#activityContent .activity-section > section[id] .activity-hero__media{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  background: #fff;
}

#activityContent .activity-section > section[id] .activity-hero__media img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* 文章側 */
#activityContent .activity-section > section[id] .activity-hero__body h2{
  margin-top: 0;
}

/* ====== 左右交互（偶数の子セクションは画像を右へ） ======
   大セクション直下の section[id] の「順番」で判定する
*/
#activityContent .activity-section > section[id]:nth-of-type(even) .activity-hero__media{
  order: 2;
}
#activityContent .activity-section > section[id]:nth-of-type(even) .activity-hero__body{
  order: 1;
}

/* SPは縦並び（画像→文章） */
@media (max-width: 960px){
  #activityContent .activity-section > section[id] .activity-hero{
    grid-template-columns: 1fr;
  }
  #activityContent .activity-section > section[id] .activity-hero__media img{
    height: 200px;
  }
  /* SPは交互解除（見やすさ優先） */
  #activityContent .activity-section > section[id]:nth-of-type(even) .activity-hero__media,
  #activityContent .activity-section > section[id]:nth-of-type(even) .activity-hero__body{
    order: initial;
  }
}

/* =====================
   1日の流れ
===================== */
.dayflow-hero {
  padding: 80px 20px;
  text-align: center;
  background: #f8fbff;
}

.dayflow-section {
  padding: 70px 20px;
}

.dayflow-section.bg-soft {
  background: #fdf7f9;
}

.dayflow-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.flow-item {
  background: #fff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.flow-item h3 {
  margin-bottom: 10px;
}

.sub-ttl {
  margin-top: 40px;
  font-weight: bold;
}
/* ===== 基本 ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.dayflow-hero {
  padding: 72px 0 0;
  text-align: center;
  background: #fff5ec;
}
.dayflow-hero h1 {
  font-size: 32px;
  margin: 0 0 10px;
}
.dayflow-hero p {
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.9;
}

.dayflow-section {
  padding: 68px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 28px;
  margin: 0 0 10px;
}
.section-lead {
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.9;
  opacity: 0.9;
}

/* ===== 園テーマ色 ===== */
.theme-blue {
  --accent: #bfe3ff;
  --accent-2: #eef8ff;
  --line: #d6ecff;
}
.theme-pink {
  --accent: #ffd0dc;
  --accent-2: #fff3f6;
  --line: #ffe0e8;
}

.theme-blue .dayflow-section,
.theme-pink .dayflow-section {
  background: transparent;
}

/* ===== グリッド ===== */
.flow-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== カード ===== */
.flow-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--line);
}

.flow-photo {
  background: var(--accent-2);
}
.flow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  display: block;
}

.flow-body {
  padding: 18px 18px 16px;
}

.flow-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.flow-title h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

/* ===== バッジ（丸アイコン＋番号） ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--accent-2);
  border: 1px solid var(--line);
  font-weight: 700;
}

.badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-icon svg {
  width: 18px;
  height: 18px;
  fill: #2b2b2b;
}

/* ===== リスト ===== */
.flow-list {
  margin: 10px 0 10px 18px;
  line-height: 1.8;
}
.flow-note {
  margin: 8px 0 0;
  line-height: 1.8;
}

/* ===== 追加枠 ===== */
.flow-extra {
  margin-top: 26px;
  padding: 18px;
  background: var(--accent-2);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.sub-ttl {
  margin: 0 0 8px;
  font-size: 18px;
}

/* ===== レスポンシブ ===== */
@media (max-width: 820px) {
  .flow-card {
    grid-template-columns: 1fr;
  }
  .flow-body {
    padding: 16px;
  }
  .section-head h2 {
    font-size: 24px;
  }
}

/* 共通理念だけ：PCでも 上：画像 / 下：文章 にする */
@media (min-width: 900px) {
  .philosophy-sec--common .philosophy-split {
    grid-template-columns: 1fr; /* 2カラム解除 */
    gap: 16px;
  }

  .philosophy-sec--common .philosophy-split__media {
    order: 1; /* 画像を上へ */
  }

  .philosophy-sec--common .philosophy-split__text {
    order: 2; /* 文章を下へ */
  }

  /* 画像が横に広がりすぎるのが気になるなら任意で */
  .philosophy-sec--common .philosophy-split__media {
    max-width: 820px;
    margin: 0 auto;
  }
}
.philosophy-sec--common .philosophy-split__media img {
  aspect-ratio: 16 / 9; /* 16/9より横長にする例 */
}
/* 共通理念だけ：中央寄せ＆文章幅を少し狭くして読みやすく */
.philosophy-sec--common .philosophy-split__text {
  max-width: 720px; /* 文章の横幅を制限（好みで 680〜760） */
  margin: 0 auto; /* 中央寄せ */
  text-align: left; /* 中央寄せでも本文は左揃えの方が読みやすい */
}

.philosophy-sec--common .philosophy-split__text p {
  margin-left: auto;
  margin-right: auto;
}

/* 見出しも共通理念だけ“気持ち”中央で整える（任意） */
.philosophy-sec--common .philosophy-title {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* PCで画像もセンター寄せ＆大きすぎ防止（前回の続きとしておすすめ） */
@media (min-width: 900px) {
  .philosophy-sec--common .philosophy-split__media {
    max-width: 820px;
    margin: 0 auto;
  }
}
/* ===== 見出し帯（丸さ） ===== */
.tokoton-titleband {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 0 0 12px;
}

.mini {
  border-radius: 16px;
  background: var(--accent-soft);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.tokoton-titleband h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tokoton-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.03);
}

/* ===== ステップ見出し ===== */
.tokoton-step-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
/* .tokoton-step-no{font-size:1.02rem} */
.tokoton-badge {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== SVGアイコン（統一） ===== */
.tokoton-ico {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.tokoton-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}
.tokoton-ico svg * {
  stroke: var(--accent);
}

.tokoton-card ul {
  margin: 0 0 10px 1.2em;
}
.tokoton-card li {
  margin: 4px 0;
}

.tokoton-note {
  margin: 10px 0 0;
  padding: 10px 12px;
  border-left: 4px solid rgba(0, 0, 0, 0.18);
  background: #fafafa;
  border-radius: 12px;
  color: #444;
}

.tokoton-power {
  border-top: 1px dashed #e5e5e5;
  margin-top: 14px;
  padding-top: 14px;
}

/* ===== 放課後等デイ：平日/休業日 2カラム ===== */
.tokoton-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 860px) {
  .tokoton-subgrid {
    grid-template-columns: 1fr;
  }
}
.tokoton-mini {
  border-radius: 16px;
  padding: 14px;
}

/* アンカーずれ対策（固定ヘッダーがある場合に効く） */
.tokoton-card {
  scroll-margin-top: 90px;
}

/* ======================
   スタッフ紹介
========================= */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

@media (max-width: 1024px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 640px) {
  .staff-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Card ===== */
.staff-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  padding: 24px 20px 22px;
  text-align: center;
  transition: 0.25s ease;
}

.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ===== 正方形アイコン ===== */
.staff-thumb {
  width: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.staff-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ===== 名前 ===== */
.staff-name {
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

/* ===== 情報 ===== */
.staff-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.staff-row {
  display: flex;
  gap: 10px;
}

.staff-label {
  flex: 0 0 5.5em;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fde23230; /* とことん系黄色ベース */
  white-space: nowrap;
}

.staff-value {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== 真美ケ丘 ===== */
/* .staff-card[data-syozoku="真美ケ丘"], 
.document-place[data-place="とことん真美ケ丘"] {
  background: rgba(46, 125, 50, .10);
  border: 1px solid #2e7d32;
}

.staff-card[data-syozoku="真美ケ丘"] .staff-label, 
.document-place[data-place="とことん真美ケ丘"] .document-label {
  background: #2e7d32;
  color: #fff;
} */

/* ===== 香芝 ===== */
/* .staff-card, 
.document-place[data-place="とことん香芝"] {
  background: rgba(216, 27, 96, .10);
  border: 1px solid #d81b60;
}

.staff-card[data-syozoku="香芝"] .staff-label, 
.document-place[data-place="とことん香芝"] .document-label {
  background: #d81b60;
  color: #fff;
} */

.staff-card,
.document-place {
  background: rgba(216, 27, 96, 0.1);
  border: 1px solid #d81b60;
  border-radius: 12px;
  padding: 16px;
  font-size: 18px;
}

.staff-card .staff-label,
.document-place .document-label {
  background: #d81b60;
  color: #fff;
}

/* ======================
Document Grid
========================= */
.document-year {
  margin-bottom: 50px;
  padding: 0 !important;
}

.document-year__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

/* ▼ 事業所ごとの横展開：最大3列 */
.document-place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* SPは縦1列 */
@media (max-width: 768px) {
  .document-place-grid {
    grid-template-columns: 1fr;
  }
}

.document-label {
  /* font-size: 16px; */
  font-weight: 700;
  margin: 0 0 12px;
}

/* PDFリスト */
.document-pdf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-pdf-item {
  margin-bottom: 12px;
}

.document-pdf-item:last-child {
  margin-bottom: 0;
}

.document-pdf-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #d95c5c;
  border-bottom: 1px solid currentColor;
  transition: 0.3s;
}

.pdf-img {
  width: 26px;
  height: auto;
  flex: 0 0 auto;
}

.document-pdf-item a:hover {
  opacity: 0.7;
}

.document-empty {
  margin: 0;
  color: #666;
}

/* ======================
   アクセス
========================= */

.access-page {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.access-title {
  text-align: center;
  margin-bottom: 50px;
}

.access-section {
  margin-bottom: 80px;
  padding: 10px;
  border-radius: 20px;
}

.access-mami {
  background: rgb(255, 255, 255);
}

.access-kashiba {
  background: rgb(255, 255, 255);
}

.access-heading {
  margin-bottom: 30px;
  font-size: 24px;
}

.access-flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.access-info {
  flex: 1;
}

.access-map {
  flex: 1;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table th {
  width: 80px;
  text-align: left;
  padding: 10px 0;
  vertical-align: top;
  font-weight: 600;
}

.access-table td {
  padding: 10px 0;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .access-flex {
    flex-direction: column;
  }
}