@charset "utf-8";

/* ==========================================================
   akiya-fuchu/index.html  ／ ページ別CSS（v5でインライン<style>から抽出）
   mac_wordpress_common_rules.md §6-4 ＝ common → page別の順で読み込む
   ----------------------------------------------------------
   ※ v5 で抽出された生のスタイル。
   ※ 変数名（--ink → --text-main, --o → --brand-main 等）は
      common.css の :root エイリアス層で吸収。順次標準名に置換予定。
========================================================== */

/* ==========================================================
   * 全国空き家アドバイザー協議会 広島県府中支部
   * Design tokens aligned to HQ (akiya-adviser.org) tone & manner
   * White base / dark-green accent / navy text / category badges
   * ========================================================== */

/* ===== Top thin bar (back-link to Yui Kobo, sliver only) ===== */

/* ========================================================== */
/*  Hero  */
/* ========================================================== */
.hero {
  padding: 32px 0 0
}

/* v5 Take氏FB 2026-06-26: 右側3アイコン非表示済みなので 1カラム表示に変更 */
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch
}
@media(max-width:780px) {
  .hero-inner {
    gap: 14px
  }
}

/* 2026-08-24 fix: :has() 依存を廃止（非対応ブラウザでルールごと無効化され
   SPで高さ0に潰れる不具合）。aspect-ratio 非対応環境向けに min-height の
   フォールバックを常に保持する。hero-side を復活させる場合は body クラス等で切替。 */
.hero-fig {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #D9DEDA;
  aspect-ratio: 21/9;
  min-height: 340px; /* aspect-ratio非対応環境のフォールバック */
}
@media(max-width:780px) {
  .hero-fig {
    aspect-ratio: 16/9;
    min-height: 200px; /* 0にしない（高さ潰れの再発防止） */
  }
}
/* 背景クロスフェード（3枚ループ） */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.is-active {
  opacity: 1;
}
/* モーション低減設定時は切替アニメを無効化（JS側も自動巡回を停止） */
@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}
.hero-overlay {
  position: absolute;
  z-index: 2;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .92);
  padding: 24px 28px;
  border-radius: 6px;
  max-width: 60%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06)
}
@media(max-width:560px) {
  .hero-overlay {
    left: 14px;
    padding: 16px 18px;
    max-width: 80%
  }
}
.hero-overlay h1 {
  margin: 0;
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  letter-spacing: .02em
}
.hero-overlay h1 em {
  font-style: normal;
  color: var(--green)
}
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 8px
}
@media(max-width:780px) {
  .hero-side {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px
  }
  .hero-side a {
    flex: 0 0 240px
  }
}
.hero-side a {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px 8px 8px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s
}
.hero-side a:hover {
  border-color: var(--green);
  transform: translateY(-1px);
  text-decoration: none
}
.hero-side a .ph {
  width: 78px;
  height: 60px;
  border-radius: 5px;
  background: #D9DEDA url(assets/images/common/dummy.png) center/cover;
  flex-shrink: 0;
  /* common.css の .ph（下層ページヒーロー）と名前が衝突するため打ち消し（2026-08-28） */
  padding: 0;
  border-bottom: none
}
.hero-side a .lbl {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink)
}
.hero-side a .lbl small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 2px
}

/* ========================================================== */
/*  Section base
    → common.css「Section base」へ一本化（2026-08-28 重複整理）。
      section.sec / .sec-head / .sec-title（::before/::after、
      SP時の線幅30px含む）は common.css を参照。 */
/* ========================================================== */

/* ========================================================== */
/*  News (2-column)  */
/* ========================================================== */
.news {
  background: #fff
}
.news-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px
}
@media(max-width:780px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

/* v5: 単一カラム表示（Take氏フィードバック 2026-06-25） */
.news-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px
}
.news-col h3 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: .04em
}
.news-col h3::after {
  content: "";
  display: block;
  width: 90%;
  margin: 8px auto 0;
  border-bottom: 1px dotted var(--ink-3)
}
.news-list {
  /* list-style / padding リセットは common.css の news-* 削除に伴い移設（2026-08-28） */
  list-style: none;
  padding: 0;
  margin: 0 0 18px
}
.news-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px
}
/* 投稿0件時（common.css .news-item--empty から移設 2026-08-28） */
.news-item--empty {
  padding: 40px 0;
  text-align: center;
  color: var(--ink-3)
}
.news-item:last-child {
  border-bottom: none
}
.news-item .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px
}
.news-item .date {
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px
}
.news-item .badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .04em
}
/* バッジ色（.b-orange / .b-green / .b-red / .b-blue）は
   common.css「Badges（協議会共通）」に一本化（2026-08-28 重複整理）。
   ここではトップのニュース欄用のサイズ・ウェイト調整のみ行う。 */
.news-item .ttl {
  display: block;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  font-weight: 400;
  text-align: justify;
}
.news-item a.ttl {
  color: var(--ink-2)
}
.news-item a.ttl:hover {
  color: var(--green);
  text-decoration: underline
}
.news-item .sub {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px
}
.news-more {
  text-align: center
}
.btn-outline {
  display: inline-block;
  padding: 10px 32px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: .04em;
  background: #fff
}
.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  text-decoration: none
}

/* ========================================================== */
/*  Media (6-thumbnail grid)  */
/* ========================================================== */
.media {
  background: #fff;
  padding-top: 50px
}
.media-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: 30px
}
@media(max-width:780px) {
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px
  }
}
@media(max-width:480px) {
  .media-grid {
    grid-template-columns: 1fr
  }
}
.media-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--ink)
}
.media-card .ph {
  aspect-ratio: 4/3;
  background: #D9DEDA url(assets/images/common/dummy.png) center/cover;
  border-radius: 5px;
  border: 1px solid var(--line-soft);
  /* common.css の .ph（下層ページヒーロー）と名前が衝突するため打ち消し（2026-08-28） */
  padding: 0
}

/* ===== Greeting (支部長・事務局長 ご挨拶) v5#7: 2名構成に刷新 ===== */
.greeting-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 30px
}
.greeting-people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}
@media(max-width:560px) {
  .greeting-people {
    grid-template-columns: 1fr;
    gap: 22px
  }
}
.greeting-person {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 8px
}
@media(max-width:420px) {
  .greeting-person {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 14px
  }
}
.greeting-photo {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line-soft)
}
.greeting-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}
.greeting-info h3 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4
}
.greeting-info .post {
  display: block;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: .03em;
  line-height: 1.55
}
.greeting-info .post small {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 2px
}
.greeting-message {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--brand-main);
  border-radius: 6px;
  padding: 24px 28px
}
@media(max-width:560px) {
  .greeting-message {
    padding: 18px 20px
  }
}
.greeting-message p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.95;
  text-align: justify;
  color: var(--ink-2)
}
.greeting-message p:last-child {
  margin-bottom: 0
}

/* ========================================================== */
/*  Activity (活動内容) v4  */
/* ========================================================== */
.activity-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.activity-block {
  margin-bottom: 34px
}
.activity-block:last-child {
  margin-bottom: 0
}
.activity-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  padding: 6px 0 6px 14px;
  border-left: 4px solid var(--green)
}
.activity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px
}
@media(max-width:680px) {
  .activity-list {
    grid-template-columns: 1fr;
    gap: 10px
  }
}
.activity-list li {
  padding-left: 1.4em;
  position: relative;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.75;
  text-align: justify;
}
.activity-list li::before {
  content: "●";
  color: var(--green);
  position: absolute;
  left: 0;
  font-size: 11px;
  top: .55em
}
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px
}
@media(max-width:680px) {
  .qual-grid {
    grid-template-columns: 1fr
  }
}
.qual-card {
  padding: 18px 20px;
  background: var(--bg-soft);
  border-radius: 8px;
  border: 1px solid var(--line-soft)
}
.qual-card .qual-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12.5px;
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: .06em;
  margin-bottom: 8px;
  font-weight: 700
}
.qual-card h4 {
  margin: 0 0 6px;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink)
}
.qual-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.7;
  text-align: justify;
}

/* ========================================================== */
/*  Organization (団体概要) v4  */
/* ========================================================== */
.org-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.org-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  border: 1px solid var(--line-soft)
}
.org-table th,
.org-table td {
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  text-align: justify;
  vertical-align: top;
  line-height: 1.7
}
.org-table th {
  width: 30%;
  background: var(--bg-soft);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px
}
.org-table td {
  color: var(--ink-2)
}
.org-table td a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px
}
.org-related {
  margin-top: 18px;
  padding: 24px 32px;
  background: #FBFBFA;
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0
}
.org-related h4 {
  margin: 0 0 6px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink)
}
.org-related p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.75;
  text-align: justify;
}

/* ========================================================== */
/*  Shibu-list (他の支部紹介) v4  */
/* ========================================================== */
section.shibu-list {
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
.shibu-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.85
}
@media(max-width:680px) {
  .shibu-intro {
    text-align: justify;
  }
}
.shibu-link-hq {
  display: block;
  max-width: 520px;
  margin: 0 auto 30px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .15s, transform .15s
}
.shibu-link-hq:hover {
  border-color: var(--green);
  transform: translateY(-1px);
  text-decoration: none
}
.shibu-link-hq .lbl {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px
}
.shibu-link-hq .lbl::after {
  content: " ↗";
  color: var(--green)
}
.shibu-link-hq .desc {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3)
}
.shibu-near {
  max-width: 720px;
  margin: 0 auto
}
.shibu-near-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  margin: 0 0 14px
}
.shibu-near-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}
@media(max-width:680px) {
  .shibu-near-list {
    grid-template-columns: 1fr
  }
}
.shibu-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px
}
.shibu-card .pref {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .08em
}
.shibu-card .nm {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55
}
.shibu-card .addr {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.65;
  margin-top: 2px
}
.shibu-card .tel {
  font-size: 14px;
  color: var(--ink-2)
}
.shibu-card a {
  display: inline-block;
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px
}
.media-card .cap {
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.5
}
.media-more {
  text-align: center
}

/* ===== Service / About / Members blocks ===== */
.about {
  background: var(--bg-soft);
  padding: 60px 0
}
.about-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center
}
.about p {
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0 0 18px
}
@media(max-width:680px) {
  .about p {
    text-align: justify;
  }
}
.about p strong {
  color: var(--ink);
  font-weight: 700
}
.stats {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 24px 0
}
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0
}
@media(max-width:680px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}
.stat {
  text-align: center;
  padding: 14px 12px;
  border-right: 1px solid var(--line-soft)
}
.stat:last-child {
  border-right: none
}
@media(max-width:680px) {
  .stat:nth-child(2) {
    border-right: none
  }
  .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-soft)
  }
}
.stat .lbl {
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: .04em;
  margin-bottom: 4px
}
.stat .num {
  font-size: 24px;
  color: var(--green);
  font-weight: 700;
  line-height: 1.2
}
.stat .num span {
  font-size: 14px;
  color: var(--ink-2);
  margin-left: 2px;
  font-weight: 500
}
.members {
  background: #fff;
  padding: 60px 0 30px
}
.members-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px
}
@media(max-width:780px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}
.member {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 12px;
  text-align: center
}
.member .role {
  font-size: 12.5px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 6px
}
.member .nm {
  font-size: 15.5px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px
}
.member .desc {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.5
}
.service {
  padding: 50px 0
}
.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}
@media(max-width:780px) {
  .service-grid {
    grid-template-columns: 1fr
  }
}
.svc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.svc-num {
  font-size: 13px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: .1em
}
.svc h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.4
}
.svc p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.8;
  text-align: justify;
}

/* ========================================================== */
/*  Flow  */
/* ========================================================== */
.flow {
  padding: 50px 0
}
.flow-list {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative
}
.flow-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  position: relative
}
.flow-item:last-child {
  border-bottom: 1px solid var(--line-soft)
}
/* ステップ間の下向き矢印（2026-08-28 追加）
   コンテンツ幅の左右中央に配置し、
   境界線（次itemのborder-top）を白背景で抜いてチェブロンを重ねる */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 12px;
  height: 12px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  background: #fff;
  z-index: 1
}
.flow-item .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px
}
.flow-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 6px 0 4px;
  line-height: 1.5
}
.flow-item p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.7;
  text-align: justify;
}

/* ========================================================== */
/*  FAQ  */
/* ========================================================== */
.faq {
  padding: 50px 0;
  background: var(--bg-soft)
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden
}
.faq-list summary {
  /* 2026-08-28：Qバッジ分（22px＋10px＝32px）のぶら下げインデント。
     2行になった際、2行目以降をテキスト開始位置に揃える */
  padding: 16px 50px 16px 50px;
  text-indent: -32px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  text-align: justify;
  color: var(--ink);
  position: relative
}
.faq-list summary::-webkit-details-marker {
  display: none
}
.faq-list summary::before {
  content: "Q";
  display: inline-block;
  text-indent: 0; /* 2026-08-28：親のtext-indent:-32pxが継承され「Q」が円外に出るためリセット */
  width: 22px;
  height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  margin-right: 10px;
  font-weight: 700
}
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  color: var(--ink-3);
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 2px, 2px 100%;
  transform: translateY(-50%);
  transform-origin: center center;
  transition: transform .15s
}
.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg)
}
.faq-list .ans {
  /* 2026-08-28：Aバッジ分（32px）のぶら下げインデント（summaryと同様） */
  padding: 0 18px 18px 50px;
  text-indent: -32px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.9;
  text-align: justify;
}
.faq-list .ans::before {
  content: "A";
  display: inline-block;
  text-indent: 0; /* 2026-08-28：親のtext-indent:-32pxが継承され「A」が円外に出るためリセット */
  width: 22px;
  height: 22px;
  background: var(--ink-3);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  font-size: 13px;
  margin-right: 10px;
  font-weight: 700;
  vertical-align: top
}

