/* ================================================================
   about.css ? 愛知県医療ソーシャルワーカー協会についてページ専用
================================================================ */

/* ── ページヘッダー ── */
.page-hero {
  background: url('../img/about/top.jpg') center / cover no-repeat;
  padding: 60px 24px;
  position: relative;
}
.page-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page-hero-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  color: var(--green);
  background: var(--white);
  padding: 10px 28px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* ── 背景 ── */
#about-content {
  background: url('../img/about/bk.jpg') center top repeat-y;
  background-size: 100% auto;
}

/* ── セクションナビ ── */
.section-nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.section-nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.section-nav-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--green);
  border-radius: 20px;
  transition: all 0.2s ease;
}
.section-nav-link:hover {
  background: var(--green);
  color: var(--white);
}

/* ── スクロール余白 ── */
#sec01, #sec02, #sec03, #sec04, #sec05, #sec06, #sec07, #sec08 {
  scroll-margin-top: 120px;
}

/* ── 共通セクション ── */
.about-sec {
  padding: 64px 0;
}
.about-sec-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── セクション見出し ── */
.about-sec-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.about-sec-bar {
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--green);
  border-radius: 3px;
  flex-shrink: 0;
}

/* ── 本文 ── */
.about-sec-body {
  max-width: 900px;
  margin: 0 auto;
}
.about-sec-body p {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 20px;
}
.about-sec-body p:last-child {
  margin-bottom: 0;
}

/* ── sec02: 会長挨拶カード ── */
.about-greeting-card {
  max-width: 900px;
  margin: 0 auto;
  background: url('../img/about/sec01bk.png') center / cover no-repeat;
  background-size: 100% 100%;
  padding: 48px 56px;
}
.about-greeting-card p {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 20px;
}
.about-greeting-card p:last-child {
  margin-bottom: 0;
}

/* ── sec03: 組織図 ── */
.org-chart {
  max-width: 900px;
  margin: 0 auto;
	padding: 30px;
  text-align: center;
	background-color: var(--white);
	border-radius: 20px;
}
.org-chart img {
  width: 100%;
  height: auto;
  display: inline-block;
}


/* ── sec04: 沿革テーブル ── */
.history-table-wrap {
  max-width: 900px;
  margin: 0 auto;
	padding: 30px;
	background-color: var(--white);
	border-radius: 30px;
}
.history-table {
  width: 100%;
  border-collapse: collapse;
}
.history-table tr {
  border-bottom: 1px solid var(--gray-200);
}
.history-table td {
  padding: 16px 20px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  vertical-align: top;
}
.history-year {
  white-space: nowrap;
  font-weight: 500;
  color: var(--gray-600);
  width: 200px;
}

/* ── sec05: 理念 ── */
.philosophy-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.philosophy-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-light);
  border-radius: 40px;
  padding: 18px 28px;
}
.philosophy-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}
.philosophy-item p {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
}


/* ── sec06: 活動目的・内容 アコーディオン ── */
.activity-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.activity-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: none;
  border-radius: 28px;
  padding: 12px 20px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-align: left;
}
.activity-header:hover {
  opacity: 0.8;
}
.activity-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  flex-shrink: 0;
}
.activity-label {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
}
.activity-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}
.activity-toggle::before,
.activity-toggle::after {
  content: '';
  position: absolute;
  background: var(--gray-600);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.activity-toggle::before {
  width: 16px;
  height: 2px;
}
.activity-toggle::after {
  width: 2px;
  height: 16px;
}
/* 開いている時は − */
.activity-header.is-open .activity-toggle::after {
  transform: rotate(90deg);
}

/* コンテンツ */
.activity-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px 0 60px;
}
.activity-body.is-open {
  max-height: 3000px;
  padding: 16px 20px 8px 60px;
}
.activity-body p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 6px;
}


/* ── sec07: PDFリンクリスト ── */
.pdf-link-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pdf-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.pdf-link-item:hover {
  opacity: 0.7;
}
.pdf-link-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}
.pdf-link-icon {
  flex-shrink: 0;
}

/* ── sec08: 各部・委員会の活動報告 アコーディオン ── */
.report-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-header {
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--green);
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
}
.report-header:hover {
  background: var(--green-dark);
}
.report-label {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.report-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}
.report-toggle::before,
.report-toggle::after {
  content: '';
  position: absolute;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.report-toggle::before {
  width: 14px;
  height: 2px;
}
.report-toggle::after {
  width: 2px;
  height: 14px;
}
.report-header.is-open .report-toggle::after {
  transform: rotate(90deg);
}

.report-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.report-body.is-open {
  max-height: 3000px;
  padding: 20px;
}
.report-body p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 8px;
}
.report-body p:last-child {
  margin-bottom: 0;
}
/* ── sec08: 総務部カード ── */
.report-content > p {
  font-size: 15px;
  color: var(--ink);
  line-height: 2;
  margin-bottom: 24px;
}
.report-card {
  background: var(--green-light);
  border-radius: 16px;
  padding: 28px 32px;
}
.report-card-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  margin-bottom: 20px;
}
.report-card-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 24px;
}
.report-card-tags span {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.report-office {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 40px;
  padding: 20px 28px;
}
.report-office-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  padding-right: 24px;
  border-right: 3px solid var(--green);
}
.report-office-icon {
  line-height: 0;
}
.report-office-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.report-office-name {
  display: flex;
  flex-direction: column;
}
.report-office-sub {
  font-size: 12px;
  color: var(--gray-600);
}
.report-office-main {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}
.report-office-right p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 4px;
}
.report-office-right a {
  color: var(--green);
  text-decoration: none;
}
.report-office-right a:hover {
  text-decoration: underline;
}
/* ── sec08: 各部内見出し ── */
.report-inner-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 24px;
}

/* ── sec08: サブセクション（番号付き見出し） ── */
.report-sub-section {
  margin-bottom: 32px;
}
.report-sub-section:last-child {
  margin-bottom: 0;
}
.report-sub-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid var(--green);
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 16px;
}
.report-sub-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-600);
  flex-shrink: 0;
}

/* ── sec08: 実績テーブル ── */
.report-history-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.report-history-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-200);
}
.report-history-table td:first-child {
  white-space: nowrap;
  font-weight: 500;
  color: var(--gray-600);
  width: 80px;
}

/* ── sec08: ラベル付き見出し・プレーンリスト ── */
.report-label-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  margin: 32px 0 16px;
}
.report-plain-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
}
.report-plain-list li {
  font-size: 14px;
  color: var(--ink);
  line-height: 2;
}




/* ── レスポンシブ ── */
@media (max-width: 900px) {
  .page-hero { padding: 40px 16px; }
  .page-hero-title { font-size: 18px; padding: 8px 20px; }

  .section-nav-inner { gap: 8px 10px; }
  .section-nav-link { font-size: 12px; padding: 5px 12px; }

  .about-sec { padding: 40px 0; }
  .about-sec-inner { padding: 0 16px; }
  .about-sec-title { font-size: 18px; margin-bottom: 24px; }

  .about-sec-body p { font-size: 14px; line-height: 1.9; }

  .about-greeting-card {
    background-image: none;
    background-color: var(--green-light);
    padding: 28px 20px;
    border-radius: 16px;
  }
  .about-greeting-card p { font-size: 14px; line-height: 1.9; }
	
	.history-table td {
    padding: 12px 8px;
    font-size: 13px;
    display: block;
    width: 100%;
  }
  .history-year {
    width: 100%;
    padding-bottom: 2px;
    font-weight: 700;
  }
  .history-table tr {
    display: block;
    padding: 8px 0;
  }
	
	.philosophy-item {
    padding: 14px 20px;
    border-radius: 24px;
  }
  .philosophy-item p { font-size: 14px; }
  .philosophy-num { width: 28px; height: 28px; font-size: 13px; }
	
	
	.activity-header { padding: 10px 14px; border-radius: 20px; }
  .activity-label { font-size: 13px; }
  .activity-body.is-open { padding: 12px 14px 8px 44px; }
  .activity-body p { font-size: 13px; }
	
	.pdf-link-text { font-size: 13px; }
	
	.report-header { padding: 12px 16px; }
  .report-label { font-size: 14px; }
  .report-body.is-open { padding: 16px; }
  .report-body p { font-size: 13px; }
	
	.report-card { padding: 20px 16px; }
  .report-card-tags { gap: 10px 20px; }
  .report-card-tags span { font-size: 13px; }
  .report-office {
    flex-direction: column;
    border-radius: 20px;
    padding: 16px;
    gap: 16px;
  }
  .report-office-left {
    border-right: none;
    padding-right: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--green);
    width: 100%;
    justify-content: center;
  }
  .report-office-right p { font-size: 13px; }
	
	.report-inner-title { font-size: 17px; margin-bottom: 20px; }
	
	.report-sub-title { font-size: 14px; padding: 8px 12px; }
  .report-sub-section { margin-bottom: 24px; }
	
	.report-history-table td {
    padding: 8px 6px;
    font-size: 13px;
    display: block;
    width: 100%;
  }
  .report-history-table td:first-child {
    width: 100%;
    padding-bottom: 2px;
    font-weight: 700;
  }
  .report-history-table tr {
    display: block;
    padding: 6px 0;
  }
	
	.report-label-title { font-size: 14px; margin: 24px 0 12px; }
  .report-plain-list li { font-size: 13px; }
	

}
