@charset "utf-8";

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

/* ========================================================== */
/*  Article hero  */
/* ========================================================== */
.ah-hero {
  padding: 40px 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--line-soft)
}
.ah-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.ah-crumb {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 14px
}
.ah-crumb a {
  color: var(--ink-3)
}
.ah-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--ink-3)
}
.ah-meta .cat {
  padding: 3px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  letter-spacing: .04em
}
.ah-meta .date {
  font-weight: 500
}
/* .ah-meta .read は WordPress化で廃止（2026-08-10） */
.ah-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 18px;
  letter-spacing: .02em
}
.ah-title em {
  font-style: normal;
  color: var(--green)
}
.ah-lead {
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0;
  max-width: 760px
}
.ah-fact {
  margin-top: 24px;
  padding: 16px 22px;
  background: var(--bg-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14.5px
}
.ah-fact dl {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0
}
.ah-fact dt {
  font-weight: 700;
  color: var(--ink)
}
.ah-fact dd {
  margin: 0;
  color: var(--ink-2)
}
.ah-fig {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 var(--gutter)
}
.ah-fig .img-area {
  aspect-ratio: 16/9;
  background: var(--line) url(../../assets/images/common/dummy.png) center/cover;
  border-radius: 6px
}
.ah-fig figcaption {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center
}

/* ========================================================== */
/*  Article body  */
/* ========================================================== */
.ab {
  padding: 50px 0 70px;
  background: #fff
}
.ab-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 50px
}
@media(max-width:980px) {
  .ab-inner {
    grid-template-columns: 1fr;
    gap: 30px
  }
}
.ab-main {
  min-width: 0
}
.ab-aside {
  position: sticky;
  top: 90px;
  align-self: start;
  font-size: 14.5px
}
@media(max-width:980px) {
  .ab-aside {
    position: static;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px 22px;
    background: var(--bg-soft)
  }
}
.toc-ttl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-3);
  margin: 0 0 12px;
  text-transform: uppercase
}
.toc-ttl::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 8px
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.toc-list a {
  color: var(--ink-2);
  text-decoration: none;
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  line-height: 1.5;
  transition: all .2s
}
.toc-list a:hover {
  color: var(--green);
  border-left-color: var(--green)
}
.ab-main h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 18px;
  padding-top: 6px;
  line-height: 1.55;
  letter-spacing: .02em
}
.ab-main h2:first-child {
  margin-top: 0
}
.ab-main h2::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-4px)
}
.ab-main h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
  line-height: 1.55
}
.ab-main p {
  font-size: 16.5px;
  line-height: 2;
  text-align: justify;
  color: var(--ink-2);
  margin: 0 0 16px
}
.ab-main p strong {
  color: var(--ink);
  font-weight: 700
}
.ab-main ul.dot {
  margin: 0 0 18px;
  padding: 0
}
.ab-main ul.dot li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.85;
  text-align: justify;
}
.ab-main ul.dot li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green)
}
.ab-main figure {
  margin: 24px 0
}
.ab-main figure img {
  max-width: 100% !important;
}
.ab-main figure .img-area {
  aspect-ratio: 16/10;
  background: var(--line) url(../../assets/images/common/dummy.png) center/cover;
  border-radius: 4px
}
.ab-main figure figcaption {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center
}
.ab-main blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.95
}
.ab-main blockquote p {
  margin: 0;
}
.ab-main blockquote p:not(:last-child) {
  margin: 0 0 16px;
}
.ab-main blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-style: normal
}
.ab-main blockquote cite::before {
  content: "— "
}
.callout {
  margin: 24px 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 6px
}
.callout .lab {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  letter-spacing: .04em;
  margin-bottom: 8px
}
.callout p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.9
}
.credit {
  margin: 36px 0 0;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.85
}
.credit b {
  font-weight: 700;
  color: var(--ink)
}
.credit a {
  color: var(--green);
  font-weight: 600
}
.credit small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3)
}
.related {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft)
}
.related h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  margin: 0 0 16px
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.related-list a {
  display: block;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500
}
.related-list a:hover {
  border-color: var(--green);
  background: #fff;
  text-decoration: none;
  color: var(--ink)
}
.related-list a small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 3px
}
.nav-arrow {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  gap: 14px;
  flex-wrap: wrap
}
.nav-arrow a {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2)
}
.nav-arrow a:hover {
  border-color: var(--green);
  text-decoration: none;
  color: var(--ink)
}
.nav-arrow a small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 3px
}

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

/* ========================================================== */
/*  Article hero  */
/* ========================================================== */
.ah-hero {
  padding: 40px 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--line-soft)
}
.ah-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter)
}
.ah-crumb {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 14px
}
.ah-crumb a {
  color: var(--ink-3)
}
.ah-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--ink-3)
}
.ah-meta .cat {
  padding: 3px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  letter-spacing: .04em
}
.ah-meta .date {
  font-weight: 500
}
/* .ah-meta .read は WordPress化で廃止（2026-08-10） */
.ah-meta .pin {
  padding: 3px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--orange-deep);
  background: #FFF5E6;
  border: 1px solid var(--orange);
  border-radius: 3px;
  letter-spacing: .04em
}
.ah-title {
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 18px;
  letter-spacing: .02em
}
.ah-title em {
  font-style: normal;
  color: var(--green)
}
.ah-lead {
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0;
  max-width: 760px
}
.ah-fact {
  margin-top: 24px;
  padding: 16px 22px;
  background: var(--bg-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14.5px
}
.ah-fact dl {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0
}
.ah-fact dt {
  font-weight: 700;
  color: var(--ink)
}
.ah-fact dd {
  margin: 0;
  color: var(--ink-2)
}
.ah-fig {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 var(--gutter)
}
.ah-fig .img-area {
  aspect-ratio: 16/9;
  background: var(--line) url(../../assets/images/common/dummy.png) center/cover;
  border-radius: 6px
}
.ah-fig figcaption {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center
}

/* ========================================================== */
/*  Article body  */
/* ========================================================== */
.ab {
  padding: 50px 0 70px;
  background: #fff
}
.ab-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 50px
}
@media(max-width:980px) {
  .ab-inner {
    grid-template-columns: 1fr;
    gap: 30px
  }
}
.ab-main {
  min-width: 0
}
.ab-aside {
  position: sticky;
  top: 90px;
  align-self: start;
  font-size: 14.5px
}
@media(max-width:980px) {
  .ab-aside {
    position: static;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px 22px;
    background: var(--bg-soft)
  }
}
.toc-ttl {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--ink-3);
  margin: 0 0 12px;
  text-transform: uppercase
}
.toc-ttl::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 8px
}
.toc-list {
  display: flex;
  flex-direction: column;
  gap: 8px
}
.toc-list a {
  color: var(--ink-2);
  text-decoration: none;
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  line-height: 1.5;
  transition: all .2s
}
.toc-list a:hover {
  color: var(--green);
  border-left-color: var(--green)
}
.ab-main h2 {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 18px;
  padding-top: 6px;
  line-height: 1.55;
  letter-spacing: .02em
}
.ab-main h2:first-child {
  margin-top: 0
}
.ab-main h2::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-4px)
}
.ab-main h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
  line-height: 1.55
}
.ab-main p {
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-2);
  margin: 0 0 16px
}
.ab-main p strong {
  color: var(--ink);
  font-weight: 700
}
.ab-main ul.dot {
  margin: 0 0 18px;
  padding: 0
}
.ab-main ul.dot li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.85
}
.ab-main ul.dot li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green)
}
.ab-main figure {
  margin: 24px 0
}
.ab-main figure img {
  width: 100%;
  height: auto;
  display: block
}
.ab-main figure .img-area {
  aspect-ratio: 16/10;
  background: var(--line) url(../../assets/images/common/dummy.png) center/cover;
  border-radius: 4px
}
.ab-main figure figcaption {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center
}
.ab-main blockquote {
  margin: 22px 0;
  padding: 18px 22px;
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  border-radius: 0 6px 6px 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.95
}
.ab-main blockquote cite {
  display: block;
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--ink-3);
  font-style: normal
}
.ab-main blockquote cite::before {
  content: "— "
}
.callout {
  margin: 24px 0;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--green);
  border-radius: 6px
}
.callout .lab {
  display: inline-block;
  padding: 2px 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  background: var(--green);
  border-radius: 3px;
  letter-spacing: .04em;
  margin-bottom: 8px
}
.callout p {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.9
}

/* ========================================================== */
/*  タイムライン  */
/* ========================================================== */
.timeline {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-left: 2px solid var(--green-soft)
}
.timeline li {
  position: relative;
  padding: 8px 0 18px 22px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.8
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 14px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green)
}
.timeline li b {
  display: block;
  font-weight: 700;
  color: var(--ink);
  font-size: 13.5px;
  letter-spacing: .04em;
  margin-bottom: 2px
}
.credit {
  margin: 36px 0 0;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.85
}
.credit b {
  font-weight: 700;
  color: var(--ink)
}
.credit a {
  color: var(--green);
  font-weight: 600
}
.credit small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-3)
}
.related {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft)
}
.related h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  margin: 0 0 16px
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}
.related-list a {
  display: block;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500
}
.related-list a:hover {
  border-color: var(--green);
  background: #fff;
  text-decoration: none;
  color: var(--ink)
}
.related-list a small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 3px
}
.nav-arrow {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  gap: 14px;
  flex-wrap: wrap
}
.nav-arrow a {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-2)
}
.nav-arrow a:hover {
  border-color: var(--green);
  text-decoration: none;
  color: var(--ink)
}
.nav-arrow a small {
  display: block;
  font-size: 12.5px;
  color: var(--ink-3);
  margin-bottom: 3px
}


/* ==========================================================
   WordPress化 追加スタイル（2026-08-10）
   ----------------------------------------------------------
   1) ACF WYSIWYG（article_text）から出力される素の ul / ol は
      class が付かないため、common.css のリセットでリストマークが
      消えていた。ul.dot と同デザインのマークを class なしリストにも適用。
   2) .ah-meta .cat をタグ一覧（<a>リンク）化したため、リンク用の
      打ち消し・ホバーを追加。
========================================================== */

/* --- 1) 素の ul（WYSIWYG出力）: ul.dot と同デザイン --- */
.ab-main ul:not([class]) {
  margin: 0 0 18px;
  padding: 0;
  list-style: none
}
.ab-main ul:not([class]) > li {
  position: relative;
  padding: 4px 0 4px 22px;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.85;
  text-align: justify
}
.ab-main ul:not([class]) > li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green)
}

/* --- 1) 素の ol（WYSIWYG出力）: 数字マーカー --- */
.ab-main ol:not([class]) {
  margin: 0 0 18px;
  padding-left: 26px;
  list-style: decimal
}
.ab-main ol:not([class]) > li {
  padding: 4px 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.85;
  text-align: justify
}
.ab-main ol:not([class]) > li::marker {
  color: var(--green);
  font-weight: 700
}

/* --- 2) タグ一覧（.ah-title 直下の .ah-tags）：ハッシュタグ風リンク --- */
.ah-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin: -8px 0 18px
}
.ah-tags a.cat {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: .04em;
  line-height: 1.6;
  text-decoration: none;
  transition: color .15s
}
.ah-tags a.cat::before {
  content: "#";
  margin-right: 1px;
  color: var(--green)
}
.ah-tags a.cat:hover,
.ah-tags a.cat:focus {
  color: var(--green);
  text-decoration: none
}
