@charset "UTF-8";

.takefuchi-about-page {
  --about-green-50: #eef7e7;
  --about-green-100: #d6eac6;
  --about-green-700: #3b6d11;
  --about-green-900: #173404;
  --about-amber-100: #fac775;
  --about-orange-50: #fff3e9;
  --about-blue-50: #eef7fb;
  --about-gray-50: #f7f5f0;
  --about-gray-100: #d3d1c7;
  --about-gray-600: #5f5e5a;
  --about-gray-800: #444441;

  color: var(--about-gray-800);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 920px;
  padding: 2.5rem 1.5rem 3.5rem;
}

.takefuchi-about-page *,
.takefuchi-about-page *::before,
.takefuchi-about-page *::after {
  box-sizing: border-box;
}

.takefuchi-about-page p {
  margin: 0 0 1rem;
}

.about-page-header {
  border-bottom: 1px solid var(--about-gray-100);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

.about-eyebrow {
  color: var(--about-green-700);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.takefuchi-about-page h1 {
  color: var(--about-green-900);
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  line-height: 1.35;
  margin: 0 0 0.75rem;
}

.about-lead {
  color: var(--about-gray-600);
  font-size: 17px;
  max-width: 760px;
}

.about-section {
  margin-bottom: 2.4rem;
}

.about-section h2 {
  border-bottom: 2px solid var(--about-green-100);
  color: var(--about-green-900);
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 1.45;
  margin: 0 0 1.1rem;
  padding-bottom: 0.55rem;
}

.about-section h3 {
  color: var(--about-green-900);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 0.45rem;
}

.about-intro {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.85fr);
}

.about-theme {
  background: var(--about-green-900);
  border-radius: 8px;
  color: #fff;
  padding: 1.25rem;
}

.about-theme span {
  color: rgba(255,255,255,0.72);
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.about-theme strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  line-height: 1.5;
}

.goal-list,
.action-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.goal-list article,
.action-grid article {
  background: #fff;
  border: 1px solid var(--about-gray-100);
  border-radius: 8px;
  padding: 1.1rem;
}

.goal-list article {
  padding-left: 4rem;
  position: relative;
}

.goal-index {
  align-items: center;
  background: var(--about-green-700);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  left: 1.1rem;
  position: absolute;
  top: 1.2rem;
  width: 34px;
}

.goal-list p,
.action-grid li,
.policy-list li,
.project-list li {
  color: var(--about-gray-600);
}

.policy-list,
.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.current-plan {
  background: var(--about-green-50);
  border: 1px solid var(--about-green-100);
  border-radius: 8px;
  padding: 1.1rem;
}
.current-plan p {
  color: var(--about-gray-600);
}
.current-plan ul {
  display: grid;
  gap: 0.45rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
.current-plan li {
  color: var(--about-gray-800);
  padding-left: 1rem;
  position: relative;
}
.current-plan li::before {
  background: var(--about-green-700);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.9rem;
  width: 6px;
}

.policy-list {
  counter-reset: policy;
}

.policy-list li,
.project-list li {
  background: #fff;
  border-bottom: 1px solid var(--about-gray-100);
  padding: 0.75rem 0 0.75rem 2.6rem;
  position: relative;
}

.policy-list li::before {
  align-items: center;
  background: var(--about-amber-100);
  border-radius: 50%;
  color: var(--about-green-900);
  content: counter(policy);
  counter-increment: policy;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  height: 26px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0.82rem;
  width: 26px;
}

.project-list li::before {
  background: var(--about-green-700);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0.5rem;
  position: absolute;
  top: 1.35rem;
  width: 7px;
}

.action-grid article:nth-child(1) {
  background: var(--about-green-50);
}

.action-grid article:nth-child(2) {
  background: var(--about-blue-50);
}

.action-grid article:nth-child(3) {
  background: var(--about-orange-50);
}

.action-grid article:nth-child(4) {
  background: #fffbe0;
}

.action-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.action-grid li {
  padding: 0.28rem 0 0.28rem 1rem;
  position: relative;
}

.action-grid li::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: 0.95rem;
  width: 5px;
}

.about-map-section table {
  border-collapse: collapse;
  width: 100%;
}

.about-map-section th,
.about-map-section td {
  border-bottom: 1px solid var(--about-gray-100);
  padding: 0.7rem 0.85rem;
  text-align: left;
}

.about-map-section th {
  background: var(--about-green-50);
  color: var(--about-green-900);
  font-weight: 700;
}

.about-map-section td:first-child {
  color: var(--about-green-700);
  font-weight: 700;
  white-space: nowrap;
  width: 7rem;
}

@media screen and (max-width: 834px) {
  .takefuchi-about-page {
    padding: 2rem 1.25rem 3rem;
  }

  .about-intro,
  .goal-list,
  .action-grid,
  .current-plan ul {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 480px) {
  .takefuchi-about-page {
    font-size: 15px;
    padding: 1.6rem 1rem 2.5rem;
  }

  .takefuchi-about-page h1 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 21px;
  }

  .goal-list article {
    padding-left: 1rem;
    padding-top: 3.4rem;
  }
}
