/* ===== 幼稚園・認定こども園とは ===== */
.about__body {
  display: flex; flex-direction: column; align-items: center; gap: 40px;
  padding: 96px 20px;
  background: var(--color-color-bg-light);
}
.about__lead { text-align: center; color: var(--color-color-text-mute); }

.pc-inline { display: inline; }
.sp-inline { display: none; }
@media (max-width: 767px) { .pc-inline { display: none; } .sp-inline { display: inline; } }

.about-card {
  width: 1180px; max-width: 100%;
  display: grid; grid-template-columns: minmax(0, 620px) 424px; justify-content: space-between; align-items: start;
  padding: 39px 49px 58px 47px;
  background: var(--color-color-bg-white);
  border: 1px solid var(--color-color-border-default); border-radius: 20px;
  box-shadow: var(--effect-shadow-md-1), var(--effect-shadow-md-0);
}
.about-card__title { color: var(--color-color-text-main); padding-bottom: 16px; position: relative; }
.about-card__title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; border-radius: 2px;
  background: var(--color-color-brand-primary);
}
.about-card--kodomoen .about-card__title::after { background: var(--color-color-brand-secondary); }
.about-card__desc { color: var(--color-color-text-sub); margin-top: 20px; }
.about-card__photo { height: 318px; border-radius: 16px; overflow: hidden; }
.about-card__photo picture { display: block; width: 100%; height: 100%; }
.about-card__photo img { display: block; width: 100%; height: 100%; object-fit: cover; }

.about-table {
  width: 100%; margin-top: 40px; border-collapse: separate; border-spacing: 0;
  border: 1px solid var(--color-color-border-default); border-radius: 8px; overflow: hidden;
  color: var(--color-color-text-sub);
}
.about-table th, .about-table td {
  padding: 15px 20px; text-align: left;
  border-bottom: 1px solid var(--color-color-border-default);
}
.about-table tbody tr:last-child > * { border-bottom: 0; }
.about-table__head {
  background: var(--color-color-border-strong); color: var(--color-color-text-main);
  font-family: 'Rounded Mplus 1c Bold', 'Rounded Mplus 1c', sans-serif; font-weight: 700;
}
.about-table__th {
  width: 160px; background: var(--color-color-bg-light); color: var(--color-color-text-main);
  border-right: 1px solid var(--color-color-border-default);
}

.about-find {
  width: 1180px; max-width: 100%; padding: 30px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center;
  background: var(--color-color-bg-white);
  border: 1px solid var(--color-color-border-default); border-radius: 20px;
  box-shadow: var(--effect-shadow-md-1), var(--effect-shadow-md-0);
}
.about-find__title { color: var(--color-color-text-main); }
.about-find__desc { color: var(--color-color-text-sub); }
.about-find__btn {
  display: flex; align-items: center; justify-content: center; margin-top: 10px;
  width: 300px; max-width: 100%; height: 52px; border-radius: 26px;
  background: var(--color-color-brand-primary); color: var(--color-color-text-inverse);
  font-weight: 500; transition: background-color .2s;
}
.about-find__btn:hover { background: var(--color-color-brand-primary-hover); }

@media (max-width: 980px) {
  .about-card { display: block; padding: 32px 32px 40px; }
  .about-card__photo { height: auto; aspect-ratio: 4 / 3; max-width: 520px; margin: 28px auto 0; }
}

@media (max-width: 767px) {
  .about__body { padding: 52px 20px 48px; gap: 28px; }
  .about__lead { font-size: 13.5px; }
  .about-card { padding: 25px 23px 26px; border-radius: 16px; }
  .about-card__title { font-size: 22px; font-weight: 800; padding-bottom: 14px; }
  .about-card__title::after { width: 48px; }
  .about-card__desc { font-size: 13px; margin-top: 16px; }
  .about-table { display: block; margin-top: 20px; }
  .about-table thead, .about-table tbody, .about-table tr { display: block; }
  .about-table th, .about-table td { display: block; width: auto; border: 0; padding: 0; font-size: 11.5px; line-height: 1.6; }
  .about-table .about-table__head {
    padding: 20px 14px; font-size: 12px; line-height: 1.75;
    background: var(--color-color-bg-light); border-bottom: 1px solid var(--color-color-border-default);
  }
  .about-table tbody tr { padding: 9px 14px 11px; border-bottom: 1px solid var(--color-color-border-default); }
  .about-table tbody tr:last-child { border-bottom: 0; }
  .about-table .about-table__th { background: none; font-family: 'Rounded Mplus 1c Bold', 'Rounded Mplus 1c', sans-serif; font-weight: 700; }
  .about-card__photo { margin: 20px 0 0; max-width: none; aspect-ratio: 302 / 226; border-radius: 12px; }
  .about-find { padding: 25px 20px 24px; border-radius: 16px; gap: 6px; }
  .about-find__title { font-size: 16px; font-weight: 800; line-height: 1.55; }
  .about-find__desc { font-size: 12px; }
  .about-find__btn { width: 220px; height: 44px; border-radius: 22px; font-size: 13px; margin-top: 14px; }
}
