@charset "UTF-8";
/* ===================================================
   下層ページ (AboutUs) 専用スタイル
=================================================== */
/* --- About FV (下層ページ用小さなFV) --- */
/* ===================================================
   下層ページ上部タイトル（About Us Hero）ブラッシュアップ
   ★のぺっと感を打破し、余白と色のメリハリアップ
=================================================== */
.about-fv-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-end; /* タイトルと画像を下に合わせる */
  justify-content: space-between;
  gap: 40px;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: 0.05em;
  width: 40%;
}

.page-title .en {
  display: block;
  font-size: 0.9rem;
  color: var(--color-spark);
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-top: 10px;
}

.about-fv-image-frame {
  width: 60%;
  height: 300px; /* FVより少し低く */
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(74, 64, 54, 0.08);
}

.about-fv-image-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --- 設立背景 (Philosophy) --- */
.philosophy {
  background-color: var(--bg-base);
}

.story-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.story-text {
  width: 45%;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 2;
  color: var(--text-light);
}

.story-3s-concept {
  width: 55%;
  /* トップページの3Sカードのデザインを踏襲 (image_5.png) */
}

/* concept-3s-flow (image_5.pngの3S循環デザインを再構成) */
/* --- クラス名を数字始まりから修正 --- */
.concept-flow-3s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  position: relative;
}

.item-3s {
  text-align: center;
  position: relative;
}

.item-3s .s-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

/* data-s属性と組み合わせる場合、または直にクラス指定する場合 */
.item-3s.spark .s-title {
  color: var(--color-spark);
}

.item-3s.shine .s-title {
  color: var(--color-shine);
}

.item-3s.smile .s-title {
  color: var(--color-smile);
}

/* 装飾用のボーダーなど */
.item-3s.spark .s-title .s {
  border-left: 3px solid var(--color-spark);
  padding-left: 5px;
}

.item-3s.shine .s-title .s {
  border-left: 3px solid var(--color-shine);
  padding-left: 5px;
}

.item-3s.smile .s-title .s {
  border-left: 3px solid var(--color-smile);
  padding-left: 5px;
}

.item-3s .s-concept {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 5px;
}

.arrow-3s {
  font-size: 1.2rem;
  color: rgba(74, 64, 54, 0.2);
  font-weight: 700;
}

/* 理念ポイントリスト */
.concept-point-list {
  font-size: 1rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.8;
  margin-top: 30px;
  padding-left: 1.5em;
  list-style-type: disc;
}

/* --- メンバー (Members) --- */
.members {
  background-color: var(--bg-alt); /* トップページのActivitiesと同じ薄い背景 */
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.member-card {
  /* レモン会風の洗練されたカードデザイン */
  background: rgba(253, 252, 249, 0.95);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(74, 64, 54, 0.05);
  backdrop-filter: blur(0px);
  border: 1px solid rgba(74, 64, 54, 0.1);
  border-top: 5px solid rgba(74, 64, 54, 0.1); /* 初期色 */
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(74, 64, 54, 0.08);
}

/* ホバー時に3Sカラーがランダムに当たる演出をJSで入れると楽しい */
/* ここでは仮で代表理事カードだけSparkにする */
.member-card:nth-child(1) {
  border-top-color: var(--color-spark);
}

.member-card:nth-child(2) {
  border-top-color: var(--color-shine);
}

.member-card:nth-child(3) {
  border-top-color: var(--color-smile);
}

.member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.member-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-info {
  text-align: center;
}

.member-role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 5px;
}

.member-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 15px;
}

.member-profile {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 500;
}

/* --- 財団概要 (Outline) --- */
.outline {
  background-color: var(--bg-base);
}

.outline-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.outline-outline {
  width: 65%;
}

.outline-policy {
  width: 35%;
}

/* 概要Tableスタイル */
.outline-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  font-size: 1rem;
}

.outline-table tr {
  border-bottom: 1px solid rgba(74, 64, 54, 0.1);
}

.outline-table tr:last-child {
  border-bottom: none;
}

.outline-table th,
.outline-table td {
  padding: 20px 10px;
  vertical-align: top;
  line-height: 1.8;
}

.outline-table th {
  font-weight: 700;
  color: var(--text-main);
  width: 25%;
  text-align: left;
}

.outline-table td {
  color: var(--text-light);
  font-weight: 500;
}

/* 令和8年度重点方針 */
.policy-list {
  font-size: 1.05rem;
  color: var(--text-main);
  font-weight: 600;
  line-height: 2;
  margin-top: 30px;
  padding-left: 1.5em;
  list-style-type: decimal; /* Decimalで重点方針っぽさを出す */
}

/* --- About Page Layout --- */
.about-page {
  background-color: #fdfcf9;
  color: #4a4036;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4%;
}

/* --- Section Title --- */
.content-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}
.content-title.shine::after {
  background-color: var(--color-shine);
}
.content-title.smile::after {
  background-color: var(--color-smile);
}

.content-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 40px;
  height: 2px;
  background: var(--color-spark);
  transform: translateX(-50%);
}

/* --- Data Grid (檸檬会 Data風) --- */
.about-data-grid {
  padding: 100px 0;
}

.data-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.data-item {
  background: #fff;
  padding: 40px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(74, 64, 54, 0.04);
}

.data-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-spark);
  margin-bottom: 15px;
}

.data-value .num {
  font-size: 3.5rem;
  font-weight: 800;
  font-family: "Arial", sans-serif;
  line-height: 1;
}

.data-value .unit {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 5px;
}

.data-desc {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* --- Philosophy Cards --- */
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}

.p-card {
  padding: 50px 30px;
  border-radius: 40px;
  text-align: center;
  transition: transform 0.3s ease;
}

.p-card:hover {
  transform: translateY(-10px);
}

.p-card.spark {
  background: rgba(138, 182, 214, 0.1);
}

.p-card.shine {
  background: rgba(252, 204, 10, 0.1);
}

.p-card.smile {
  background: rgba(142, 188, 155, 0.1);
}

.p-icon {
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 10px;
  opacity: 0.5;
}

.p-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.p-card .ja {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.p-card .detail {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* --- Story Section --- */
.story-box {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 100px;
}

.story-img {
  width: 50%;
  height: 500px;
}

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

.story-text {
  width: 50%;
  padding: 60px;
}

.story-text p {
  margin-bottom: 20px;
  line-height: 2;
  font-weight: 500;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  .data-row, .philosophy-cards {
    grid-template-columns: 1fr;
  }
  .story-box {
    flex-direction: column;
  }
  .story-img, .story-text {
    width: 100%;
  }
  .story-img {
    height: 300px;
  }
}
/* --- Members Section --- */
.about-members {
  padding: 100px 0;
  background-color: #f4f3ef; /* 他の白背景と区別するための極薄いグレー/ベージュ */
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.member-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 64, 54, 0.04);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-img {
  width: 100%;
  aspect-ratio: 1/1; /* 正方形を維持 */
  background: #e8e6e1; /* 画像がない時の仮背景色 */
  margin-bottom: 25px;
}

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

.member-info .role {
  font-size: 0.8rem;
  color: var(--color-spark);
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.member-info .name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
}

/* 概要テーブルの調整 */
.outline-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(74, 64, 54, 0.04);
}

.outline-table th, .outline-table td {
  padding: 25px;
  border-bottom: 1px solid rgba(74, 64, 54, 0.05);
  line-height: 1.8;
}

.outline-table th {
  width: 25%;
  text-align: left;
  font-weight: 700;
  background: #faf9f7;
  color: var(--text-main);
}

.outline-table td {
  color: var(--text-light);
  font-weight: 500;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .member-list {
    grid-template-columns: 1fr;
  }
  .outline-table th, .outline-table td {
    display: block;
    width: 100%;
  }
  .outline-table th {
    padding-bottom: 10px;
    border-bottom: none;
  }
}
/* --- 財団概要 (Outline) --- */
.about-outline {
  padding: 100px 0 120px; /* 上に100px、下に120pxのたっぷりの余白 */
  background-color: #fdfcf9; /* 念のため背景色を指定 */
}

/* スマホ用の調整（もし記載がなければ） */
@media screen and (max-width: 768px) {
  .about-outline {
    padding: 60px 0 80px; /* スマホでも少し広めに確保 */
  }
}
/* ===================================================
   スマホ対応 (Mobile Optimization) 
   ※各セクションの横並びを縦並びにし、余白を最適化
=================================================== */
@media screen and (max-width: 768px) {
  /* --- 共通 --- */
  .content-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .inner {
    padding: 0 5%;
  }
  /* --- About FV (タイトルと画像) --- */
  .about-fv-inner {
    flex-direction: column; /* 横並びを縦並びに */
    align-items: center;
    gap: 30px;
    width: 100%;
  }
  .page-title {
    width: 100%;
    font-size: 2rem;
    text-align: center;
  }
  .about-fv-image-frame {
    width: 100%;
    height: 250px; /* スマホでは画像の高さを抑える */
  }
  /* --- 設立背景 (Story / Philosophy) --- */
  .story-content {
    flex-direction: column;
    gap: 40px;
  }
  .story-text, .story-3s-concept {
    width: 100%;
  }
  /* 3Sの循環を縦並びにし、矢印を下向きにする */
  .concept-flow-3s {
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }
  .arrow-3s {
    transform: rotate(90deg); /* 矢印を「→」から「↓」へ回転 */
  }
  /* ストーリーボックス（写真＋テキストのレイアウト） */
  .story-box {
    flex-direction: column;
    gap: 0;
    border-radius: 30px; /* 角丸を少し小さく */
  }
  .story-img {
    width: 100%;
    height: 250px;
  }
  .story-text {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
  }
  /* --- メンバー (Members) --- */
  .about-members {
    padding: 60px 0; /* 上下の余白を少し詰める */
  }
  .member-list {
    grid-template-columns: 1fr; /* 3列から1列へ */
    gap: 20px;
  }
  /* --- 財団概要 (Outline) --- */
  .about-outline {
    padding: 60px 0 80px;
  }
  .outline-table th, .outline-table td {
    display: block; /* 表（テーブル）を縦積みに */
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }
  .outline-table th {
    padding-bottom: 5px;
    border-bottom: none;
    background: transparent; /* スマホでは背景色を消してスッキリ */
  }
  .outline-table td {
    padding-top: 0;
    border-bottom: 1px solid rgba(74, 64, 54, 0.1);
  }
}
/* ===================================================
   About Page Custom Styling (Lemonkai Inspired)
=================================================== */
/* 共通：セクションごとの変化 */
.bg-base {
  background-color: var(--bg-base);
} /* 薄いアイボリー */
.bg-white {
  background-color: #ffffff;
}

/* 1. About Hero: アーチ状の装飾 */
.about-hero {
  padding: 200px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero .main-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
  position: relative;
  z-index: 2;
}

.hero-arch-deco {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 200px;
  background: #fff;
  border-radius: 50% 50% 0 0; /* 有機的なカーブ */
}

/* 2. Philosophy: 循環図解の洗練 */
.philosophy-intro {
  text-align: center;
  margin-bottom: 80px;
}

.large-copy {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.6;
  color: var(--text-main);
  margin-top: 20px;
}

/* 3. Story: 画像とテキストの対比 */
.inner-split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 40px;
}

.story-image {
  width: 50%;
  border-radius: 40px; /* 大きめの角丸 */
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(74, 64, 54, 0.1);
}

.story-content {
  width: 50%;
}

.story-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.4;
}

/* 4. Members: シルエット表現 */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.member-card {
  text-align: center;
  padding: 20px;
}

.member-icon {
  width: 120px;
  height: 120px;
  background-color: #f0ebe4;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
}

/* シルエットを擬似要素で表現 (実際の画像があれば差し替え) */
.member-icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 100px;
  background: #d4cdc5;
  border-radius: 40px 40px 0 0;
}

/* 5. Info Table: 清潔感のあるライン */
.info-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}

.info-table th, .info-table td {
  padding: 30px 20px;
  border-bottom: 1px solid #f0e6dd;
  text-align: left;
}

.info-table th {
  width: 30%;
  color: var(--text-light);
  font-weight: 600;
}

/* スマホ対応 */
@media screen and (max-width: 900px) {
  .inner-split {
    flex-direction: column;
    gap: 40px;
    padding: 60px 20px;
  }
  .story-image, .story-content {
    width: 100%;
  }
  .about-hero .main-title {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style_about.css.map */

/* ===================================================
   About Sectionラベル（共通）
=================================================== */
.about-section-label {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* column-span: all は1カラム化により不要 */
}
.label-en {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--color-spark);
    display: block;
}
.label-ja {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    display: block;
}
.about-section-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.5;
    color: var(--text-main);
    margin-bottom: 60px;
    letter-spacing: 0.03em;
}

/* ===================================================
   理念セクション
=================================================== */
.about-philosophy {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfcf9 0%, #f4f3ef 100%);
}
.philosophy-cards-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.p-card-about {
    padding: 45px 35px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-card-about:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.p-card-about.spark-card {
    background: rgba(138,182,214,0.12);
    border: 1px solid rgba(138,182,214,0.25);
    border-top: 4px solid var(--color-spark);
}
.p-card-about.shine-card {
    background: rgba(230,197,101,0.10);
    border: 1px solid rgba(230,197,101,0.25);
    border-top: 4px solid var(--color-shine);
}
.p-card-about.smile-card {
    background: rgba(142,188,155,0.10);
    border: 1px solid rgba(142,188,155,0.25);
    border-top: 4px solid var(--color-smile);
}
.p-card-num {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.15;
    color: var(--text-main);
}
.p-card-header {
    margin-bottom: 20px;
}
.p-card-en {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
}
.spark-card .p-card-en { color: var(--color-spark); }
.shine-card .p-card-en { color: var(--color-shine); }
.smile-card .p-card-en { color: var(--color-smile); }

.p-card-ja {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 4px;
    letter-spacing: 0.1em;
}
.p-card-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-main);
    font-weight: 500;
    margin: 0;
}

/* ===================================================
   設立の背景 - ストーリーボックス改善
=================================================== */
.about-story {
    padding: 80px 0 120px;   /* 上のセクションとの余白 */
    background: #fdfcf9;
}
.story-box {
    display: block !important; /* 旧 display:flex を上書き */
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(74,64,54,0.04),
        0 20px 60px rgba(74,64,54,0.09),
        0 60px 100px rgba(74,64,54,0.04);
    background: #fff;
    margin-bottom: 0;          /* 旧 margin-bottom:100px を上書き */
}

/* ── 上部：ロゴ点滅アニメーション ── */
.story-logos-anim {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #fafaf8 0%, #f5f3ef 100%);
    border-bottom: 1px solid rgba(74,64,54,0.06);
}
.sla-item {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    opacity: 0;
    animation: sla-blink 3s ease-in-out infinite;
}
.sla-spark { color: var(--color-spark); animation-delay: 0s; }
.sla-shine { color: var(--color-shine); animation-delay: 1s; }
.sla-smile { color: var(--color-smile); animation-delay: 2s; }

@keyframes sla-blink {
    0%   { opacity: 0; transform: scale(0.9); }
    20%  { opacity: 1; transform: scale(1); }
    50%  { opacity: 1; transform: scale(1); }
    70%  { opacity: 0; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(0.9); }
}

/* ── 上部：ランドスケープ画像 ── */
.story-img {
    position: relative;
    width: 100% !important;
    height: 320px !important;
    min-height: unset !important;
    overflow: hidden;
    flex-shrink: unset;
}
.story-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 7s ease;
    transform: scale(1.04);
}
.story-box:hover .story-img img {
    transform: scale(1.00);
}
/* 画像下端フェード（テキスト領域へ自然につなぐ） */
.story-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.55));
    pointer-events: none;
}

/* ── 下部：1カラムテキスト（推奨：視線移動がシンプル） ── */
.story-text {
    width: auto !important;
    padding: 52px 72px 60px !important;
    position: relative;
    display: block !important;
    /* 1カラム：読みやすさ優先 */
    columns: unset;
    max-width: 720px;
    margin-inline: auto;
}
/* 3色アクセントライン（左端） */
.story-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 72px;
    width: 72px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--color-spark) 33%,
        var(--color-shine) 33% 66%,
        var(--color-smile) 66%
    );
    border-radius: 0 0 3px 3px;
}
/* 引用符デコレーション */
.story-text::after {
    content: "\201C";
    position: absolute;
    bottom: 20px;
    right: 48px;
    font-size: 12rem;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
    color: rgba(74, 64, 54, 0.03);
    pointer-events: none;
    user-select: none;
}

/* SP */
@media screen and (max-width: 768px) {
    .story-img  { height: 220px !important; }
    .story-text { padding: 36px 28px 44px !important; max-width: 100%; }
    .story-text::before { left: 28px; }
}
.story-text p {
    font-size: 1.0rem;
    line-height: 2.1;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}
.story-text p:last-child { margin-bottom: 0; }
/* SPARK / SHINE / SMILE キーワード強調 */
.story-text p strong,
.story-text p .kw-spark { color: var(--color-spark); font-weight: 700; }
.story-text p .kw-shine { color: #c9a832; font-weight: 700; }
.story-text p .kw-smile { color: var(--color-smile); font-weight: 700; }

/* ===================================================
   メンバー - シルエット表現
=================================================== */
.about-members {
    padding: 100px 0;
    background: #f4f3ef;
}
.member-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.member-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74,64,54,0.05);
    text-align: center;
    padding-bottom: 35px;
    transition: transform 0.3s ease;
}
.member-card:hover { transform: translateY(-5px); }
.member-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 30px;
    box-sizing: border-box;
}
.silhouette-svg {
    width: 70%;
    height: auto;
    display: block;
}
.spark-silhouette { color: var(--color-spark); }
.shine-silhouette { color: var(--color-shine); }
.smile-silhouette { color: var(--color-smile); }

/* メンバーカードの背景を各カラーで差別化 */
.member-card:nth-child(1) .member-img { background: rgba(138,182,214,0.12); }
.member-card:nth-child(2) .member-img { background: rgba(230,197,101,0.12); }
.member-card:nth-child(3) .member-img { background: rgba(142,188,155,0.12); }

.member-info {
    padding: 0 25px;
    margin-top: 20px;
}
.member-info .role {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-spark);
    display: block;
    margin-bottom: 8px;
}
.member-info .name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
}

/* ===================================================
   財団概要セクション
=================================================== */
.about-outline {
    padding: 100px 0 120px;
    background: #fdfcf9;
}
.outline-table-wrapper {
    max-width: 860px;
    margin: 40px auto 0;
}
.outline-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74,64,54,0.05);
}
.outline-table th, .outline-table td {
    padding: 28px 30px;
    border-bottom: 1px solid rgba(74,64,54,0.06);
    line-height: 1.8;
    vertical-align: top;
}
.outline-table tr:last-child th,
.outline-table tr:last-child td { border-bottom: none; }
.outline-table th {
    width: 25%;
    text-align: left;
    font-weight: 700;
    color: var(--color-spark);
    background: #faf9f7;
    font-size: 0.9rem;
}
.outline-table td {
    color: var(--text-main);
    font-weight: 500;
}

/* ===================================================
   About レスポンシブ追加
=================================================== */
@media screen and (max-width: 768px) {
    .about-section-title { font-size: 1.5rem; margin-bottom: 40px; }
    .philosophy-cards-about { grid-template-columns: 1fr; gap: 20px; }
    .p-card-about { padding: 35px 25px; }
    .story-box { flex-direction: column; border-radius: 24px; }
    .story-img { width: 100%; min-height: 280px; }
    .story-img::after { display: none; }
    .story-text { width: 100%; padding: 48px 28px 40px; box-sizing: border-box; }
    .story-text::before { left: 28px; }
    .story-text::after { display: none; }
    .member-list { grid-template-columns: 1fr; gap: 20px; }
    .outline-table th, .outline-table td { display: block; width: 100%; padding: 15px 20px; box-sizing: border-box; }
    .outline-table th { padding-bottom: 5px; border-bottom: none; background: transparent; }
}