@charset "UTF-8";
/* ===================================================
   事業内容 (Activities) ページ専用スタイル
=================================================== */
/* --- セクション共通 --- */
.activity-section {
  padding: 0 0 100px;
}

/* ===================================================
   セクションバンド（各事業の全幅ヘッダー帯）
=================================================== */
.section-band {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
.band-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.band-num {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.09;
  color: var(--text-main);
  flex-shrink: 0;
  width: 110px;
  text-align: right;
  font-family: "Quicksand", sans-serif;
}
.band-text {
  flex-shrink: 0;
  padding: 0 40px;
  border-right: 1px solid rgba(74,64,54,0.12);
}
.band-title {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 6px 0;
  letter-spacing: 0.04em;
  font-family: "Quicksand", sans-serif;
}
.band-title .s {
  font-size: 1.1em;
}
.band-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0;
  opacity: 0.65;
}
.band-desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  margin: 0;
  padding-left: 40px;
  color: var(--text-light);
}

/* Spark band */
.spark-band {
  background: rgba(138,182,214,0.09);
  border-left: 6px solid var(--color-spark);
}
.spark-band .band-title { color: var(--color-spark); }
.spark-band .band-sub { color: var(--color-spark); }

/* Shine band */
.shine-band {
  background: rgba(230,197,101,0.09);
  border-left: 6px solid var(--color-shine);
}
.shine-band .band-title { color: #c0963c; }
.shine-band .band-sub { color: #c0963c; }

/* Smile band */
.smile-band {
  background: rgba(142,188,155,0.09);
  border-left: 6px solid var(--color-smile);
}
.smile-band .band-title { color: var(--color-smile); }
.smile-band .band-sub { color: var(--color-smile); }

@media screen and (max-width: 768px) {
  .band-inner { flex-wrap: wrap; gap: 10px; }
  .band-num { font-size: 4rem; width: auto; }
  .band-text { padding: 0 20px; border-right: none; border-bottom: 1px solid rgba(74,64,54,0.1); padding-bottom: 15px; width: 100%; box-sizing: border-box; }
  .band-desc { padding-left: 0; padding-top: 15px; }
  .band-title { font-size: 1.7rem; }
  .spark-band,
  .shine-band,
  .smile-band {
    border-left: none;
  }
}

/* 背景色を交互に変えて区切りをわかりやすくする */
.spark-section {
  background-color: #fff;
}

.shine-section {
  background-color: var(--bg-base);
}

.smile-section {
  background-color: #fff;
}

.other-section {
  background-color: var(--bg-base);
  padding-bottom: 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* 3Sのカラーアクセント */
.spark-section .section-title {
  color: var(--color-spark);
}

.spark-section .section-subtitle {
  color: var(--color-spark);
}

.shine-section .section-title {
  color: var(--color-shine);
}

.shine-section .section-subtitle {
  color: var(--color-shine);
}

.smile-section .section-title {
  color: var(--color-smile);
}

.smile-section .section-subtitle {
  color: var(--color-smile);
}

/* --- カードレイアウト --- */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* SMILE事業用（情報が多いので細かく分ける） */
.activity-cards.grid-3 {
  grid-template-columns: repeat(2, 1fr);
}

.a-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(74, 64, 54, 0.05);
  border: 1px solid rgba(74, 64, 54, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.a-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  background: #f4f3ef;
}

.photo-credit {
  position: absolute;
  bottom: 8px;
  right: 8px;
  margin: 0;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.38);
  padding: 1px 5px;
  border-radius: 2px;
  line-height: 1.5;
  pointer-events: none;
  transform: rotate(-6deg);
  transform-origin: right bottom;
}

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

.a-card-body {
  padding: 40px;
  flex-grow: 1;
}

.a-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 25px;
  line-height: 1.4;
  border-bottom: 2px solid rgba(74, 64, 54, 0.05);
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* 検討中・試行などのバッジ */
.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: #f4f3ef;
  color: var(--text-light);
}

/* 情報定義リスト (dl, dt, dd) */
.a-card-info {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-main);
}

.a-card-info dt {
  font-weight: 700;
  color: var(--text-light);
  margin-top: 15px;
  font-size: 0.85rem;
}

.a-card-info dd {
  margin-left: 0;
  font-weight: 500;
}

/* 特徴リスト */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 5px;
}

.feature-list li {
  position: relative;
  padding-left: 1.2em;
}

.feature-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--color-spark);
  font-size: 0.8em;
}

/* --- 普及啓発活動 --- */
.other-box {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(74, 64, 54, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.budget-text {
  margin-top: 20px;
  font-weight: 700;
  color: var(--text-main);
  border-top: 1px dashed rgba(74, 64, 54, 0.1);
  padding-top: 20px;
}

/* --- 結語 (Conclusion) --- */
.activities-conclusion {
  padding: 80px 0 120px;
  background-color: var(--bg-base);
  text-align: center;
}

.c-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.conclusion-box {
  background: #fff;
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(74, 64, 54, 0.05);
  border: 1px solid rgba(74, 64, 54, 0.1);
}

.c-text {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2;
  color: var(--text-main);
  margin-bottom: 30px;
}

.c-flow {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.c-spark {
  color: var(--color-spark);
}

.c-shine {
  color: var(--color-shine);
}

.c-smile {
  color: var(--color-smile);
}

.arrow {
  color: rgba(74, 64, 54, 0.2);
}

.c-sign {
  margin-top: 40px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: right;
}

/* ★修正：「次世代のSPARKへ」を再びブルーにして循環を表現 */
.c-next {
  color: var(--color-spark);
  /* 少しだけ文字を大きく・太くして強調しても綺麗です */
  font-size: 1.5rem;
  font-weight: 900;
}

/* ===================================================
   レスポンシブ対応 (Responsive Optimization)
=================================================== */
/* --- 1. タブレット対応（1024px以下） --- */
@media screen and (max-width: 1024px) {
  .page-hero {
    padding: 140px 0 60px;
  }
  /* カードの余白を少し詰める */
  .activity-cards,
  .activity-cards.grid-3 {
    gap: 20px;
  }
  .a-card-body {
    padding: 30px;
  }
  /* 結語の循環テキストを折り返させないための微調整 */
  .c-flow {
    font-size: 1.2rem;
    gap: 10px;
  }
  .c-next {
    font-size: 1.3rem;
  }
}
/* --- 2. スマホ対応（768px以下） --- */
@media screen and (max-width: 768px) {
  .page-hero {
    padding: 120px 0 50px;
  }
  .page-hero .main-title {
    font-size: 2rem;
  }
  .activity-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.8rem;
  }
  /* カードを1列（縦並び）にする */
  .activity-cards,
  .activity-cards.grid-3 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .a-card-body {
    padding: 25px;
  }
  /* 普及啓発活動のボックス */
  .other-box {
    padding: 30px 20px;
  }
  /* 結語セクションを縦積みにする */
  .activities-conclusion {
    padding: 60px 0 80px;
  }
  .conclusion-box {
    padding: 40px 20px;
  }
  .c-flow {
    font-size: 1.1rem;
    gap: 15px; /* 縦に積んだ時に窮屈にならないよう少し空ける */
    flex-direction: column;
  }
  .c-next {
    font-size: 1.2rem;
    margin-top: 10px; /* 最後のメッセージを少し離す */
  }
  /* 矢印を「→」から「↓」へ回転 */
  .arrow {
    transform: rotate(90deg);
  }
}
/* --- 2. スマホ対応（768px以下） --- */
@media screen and (max-width: 768px) {
  /* ★追加：スマホ画面の両サイドにしっかり余白（5%〜8%程度）を作る */
  .inner {
    padding-left: 5%;
    padding-right: 5%;
    /* または padding: 0 5%; （上下は0、左右は5%） */
  }
  /* 以下、既存のコードが続きます... */
  .page-hero {
    padding: 120px 0 50px;
  }
  /* ... */
}/*# sourceMappingURL=style_activities.css.map */

/* ===================================================
   3事業 一覧（Overview）セクション
=================================================== */
.activities-overview {
    padding: 70px 0 80px;
    background: #fff;
    border-bottom: 1px solid rgba(74,64,54,0.06);
}
.overview-lead {
    text-align: center;
    margin-bottom: 50px;
}
.overview-en {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
    opacity: 0.15;
    margin-bottom: 10px;
}
.overview-desc {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.8;
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ov-card {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.ov-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.spark-ov { background: rgba(138,182,214,0.12); border: 1px solid rgba(138,182,214,0.3); border-top: 4px solid var(--color-spark); }
.shine-ov { background: rgba(230,197,101,0.10); border: 1px solid rgba(230,197,101,0.3); border-top: 4px solid var(--color-shine); }
.smile-ov { background: rgba(142,188,155,0.10); border: 1px solid rgba(142,188,155,0.3); border-top: 4px solid var(--color-smile); }

.ov-num {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.12;
    color: var(--text-main);
    margin-bottom: 15px;
}
.ov-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.spark-ov .ov-title { color: var(--color-spark); }
.shine-ov .ov-title { color: var(--color-shine); }
.smile-ov .ov-title { color: var(--color-smile); }

.ov-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 25px;
}
.ov-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.ov-list li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 6px 0;
    border-bottom: 1px solid rgba(74,64,54,0.06);
}
.ov-list li:last-child { border-bottom: none; }
.ov-list li::before { content: '▷ '; opacity: 0.4; }
.ov-arrow {
    display: block;
    text-align: right;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 20px;
    transition: transform 0.3s ease;
}
.ov-card:hover .ov-arrow { transform: translateY(4px); }

/* セクション番号 */
.section-num {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.08;
    color: var(--text-main);
    margin-bottom: -20px;
}

/* カードのリード文 */
.a-card-lead {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(74,64,54,0.06);
}

/* スマイル事業ビジュアル */
.smile-visual-wrap {
    background: rgba(142,188,155,0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
.smile-concept {
    display: flex;
    align-items: center;
    gap: 30px;
}
.smile-concept-icon svg {
    width: 70px;
    height: 70px;
}
.smile-concept-text {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.7;
    color: var(--text-main);
    margin: 0;
}

/* セクション境界の強調 */
.spark-section { border-left: 5px solid var(--color-spark); padding-left: 0; }
.shine-section { border-left: 5px solid var(--color-shine); padding-left: 0; }
.smile-section { border-left: 5px solid var(--color-smile); padding-left: 0; }

/* レスポンシブ追加 */
@media screen and (max-width: 768px) {
    .overview-grid { grid-template-columns: 1fr; gap: 16px; }
    .ov-card { padding: 30px 25px; }
    .smile-concept { flex-direction: column; text-align: center; }
    .smile-concept-text { font-size: 1.1rem; }
}