/* =========================================================
 * Ome Layout Modules (v2.2)
 * 公益社団法人 青梅法人会 – 固定ページレイアウト／共通ページ構成
 * ========================================================= */

/* =========================================================
 * FRAME & CONTAINER
 * ========================================================= */

/* 外側（ブラウザ全体） */
body {
  background-color: #ccc; /* フレーム外側を薄いグレーに */
}

/* サイト全体のフレーム */
.site-frame {
  max-width: 1440px;
  margin: 0 auto;
  background-color: var(--color-bg);
}

/* コンテンツ領域（標準） */
.l-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  background: var(--color-bg);
}

/* 狭いレイアウト用（例：下層ページ） */
.l-container--narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 1024px) {
  .l-container {
    padding:0 20px;
  }
}

@media (max-width: 768px) {
  .l-container {
    padding:0 20px;
  }
}

/* =========================================================
 * カラム構成
 * ========================================================= */
.c-columns {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
.c-columns--2 { grid-template-columns: repeat(2, 1fr); }
.c-columns--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width:1024px){
  .c-columns--2,
  .c-columns--3 {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Breadcrumbs
   ========================================================= */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  color: var(--ohj-muted);
  margin-bottom: 16px;
}

.c-breadcrumbs a {
  color: var(--ohj-muted);
  text-decoration: none;
  transition: color .2s;
}
.c-breadcrumbs a:hover {
  color: var(--ohj-blue);
  text-decoration: underline;
}
.c-breadcrumbs span::after {
  content: "›";
  margin: 0 0.5em;
  color: #ccc;
}
.c-breadcrumbs span:last-child::after { content: ""; }
.c-breadcrumbs span:last-child {
  color: #111;
  font-weight: 600;
}

/* =========================================================
 * テーブル
 * ========================================================= */
.c-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.c-table th, .c-table td {
  border: 1px solid var(--color-border);
  padding: 0.8em 1em;
  text-align: left;
}
.c-table th {
  background: var(--color-surface);
  width: 25%;
  color: var(--color-primary-ink);
  font-weight: 600;
}
@media (max-width:768px){
  .c-table th, .c-table td {
    display: block;
    width: 100%;
  }
  .c-table tr {
    margin-bottom: 1rem;
    display: block;
  }
}

/* =========================================================
 * リスト
 * ========================================================= */
.c-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.c-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
}
.c-list li::before {
  content: "●";
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.7em;
}

/* =========================================================
 * ボックス
 * ========================================================= */
.c-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 0.5em;
  margin-bottom: 2rem;
}
.c-box-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary-ink);
  margin-bottom: 0.8em;
}

/* =========================================================
 * 固定ページ：メニューリンクブロック
 * ========================================================= */
.c-page-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}
.c-page-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
  border: 2px solid #007B43;
  color: #007B43;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.c-page-menu a:hover {
  background: #ddd;
}
.c-page-menu a img {
  width: 30px;
}
.c-page-menu img {
  display: block;
  width: 20px;
  height: 20px;
}
@media (max-width:1024px){
  .c-page-menu { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}
@media (max-width:768px){
  .c-page-menu { grid-template-columns: 1fr; }
}

/* =========================================================
 * CTA
 * ========================================================= */
.c-cta {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 2rem 1rem;
  border-radius: 0.5em;
  margin: 3rem 0;
}
.c-cta .c-btn {
  display: inline-block;
  background: #fff;
  color: var(--color-primary-ink);
  padding: 0.8em 1.6em;
  border-radius: 0.5em;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.c-cta .c-btn:hover {
  background: var(--color-surface);
}

/* =========================================================
 * Utility
 * ========================================================= */
.u-center { text-align:center; }
.u-mb0 { margin-bottom:0!important; }
.u-mb40 { margin-bottom:40px!important; }
.u-mb80 { margin-bottom:80px!important; }

/* =========================================================
 * 2カラム構成
 * ========================================================= */
.l-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.l-content {
  flex: 1;
  min-width: 0;
}
.l-aside-nav {
  width: 260px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .l-flex {
    flex-direction: column;
  }
  .l-aside-nav {
    width: 100%;
    order: 2;
    margin-top: 40px;
  }
  .l-content { order: 1; }
}

/* =========================================================
   福利厚生リストレイアウト（固定ページ・カスタムHTML対応）
   ========================================================= */
ul.service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  list-style: none;
  margin: 40px 0;
  padding: 0;
}
ul.service li {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
ul.service li:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
ul.service img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
ul.service h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 16px 16px 8px;
  line-height: 1.5;
}
ul.service p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0 16px 16px;
}
ul.service a {
  display: block;
  text-decoration: none;
  color: inherit;
}
ul.service a:hover img {
  opacity: 0.9;
}
@media (max-width: 1024px) {
  ul.service { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  ul.service {
    grid-template-columns: 1fr;
    gap: 24px;
    }
}


/* =========================================================
 * CTA
 * ========================================================= */
.c-cta {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 2rem 1rem;
  border-radius: 0.5em;
  margin: 3rem 0;
}
.c-cta .c-btn {
  display: inline-block;
  background: #fff;
  color: var(--color-primary-ink);
  padding: 0.8em 1.6em;
  border-radius: 0.5em;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.c-cta .c-btn:hover {
  background: var(--color-surface);
}

/* =========================================================
 * アコーディオン
 * ========================================================= */
.c-accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.c-accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1em 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary-ink);
  cursor: pointer;
  position: relative;
}
.c-accordion-btn::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0.9em;
  color: var(--color-primary);
  transition: transform 0.2s;
}
.c-accordion-btn.is-open::after { content: "－"; }
.c-accordion-panel {
  display: none;
  padding: 0 0 1em 0;
  color: var(--color-text);
  line-height: 1.8;
}

/* =========================================================
 * レイアウト（1カラム／2カラム）＋パンくず＋タイトル
 * ========================================================= */
.l-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.l-content.has-sidebar {
  grid-template-columns: minmax(0, 1fr) 320px;
}
@media (max-width:1024px){
  .l-content.has-sidebar { grid-template-columns: 1fr; }
}

.l-main { min-width: 0; }
.l-aside { min-width: 0; }


/* Archive item */
.c-archive-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.c-archive-item .c-heading-lv3 a {
  text-decoration: none;
  color: var(--color-primary-ink);
}
.c-archive-item .c-heading-lv3 a:hover {
  text-decoration: underline;
}

/* Pagination */
.c-pagination { margin: 24px 0; }

/* =========================================================
 * Utility
 * ========================================================= */
.u-center { text-align:center; }
.u-mb0 { margin-bottom:0!important; }
.u-mb40 { margin-bottom:40px!important; }
.u-mb80 { margin-bottom:80px!important; }


/* =========================================================
 * 会長挨拶エリア（人物写真＋肩書き）
 * ========================================================= */
.c-chairman {
  text-align: center;
  margin: 60px auto;
}

.c-chairman img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0 auto 20px;
  object-fit: cover;
  border-radius: 4px;
}

.c-chairman p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
}

.c-chairman .c-chairman__name {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary-ink);
  margin-top: 0.3em;
}
.c-chairman-text{
    font-size: 1.3em;
    line-height: 1.8em;
    margin-bottom: 120px;
}
@media (max-width: 768px) {
  .c-chairman img {
    width: 200px;
    margin-bottom: 16px;
  }
  .c-chairman .c-chairman__name {
    font-size: 1.1rem;
  }
}

/* =========================================================
 * 入会案内ページレイアウト（共通）
 * ========================================================= */
.c-entryguide {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.8;
}

.c-entryguide__section {
  margin-bottom: 80px;
}

.c-entryguide__title {
  background: var(--color-green);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 20px;
  border-radius: 4px 4px 0 0;
}
@media (max-width: 768px) {
    .c-entryguide__title {
        background: none;
        color: var(--color-green);
        padding: 0;
    }
}
.c-entryguide__lead {
  margin: 0;
  padding: 12px 20px 24px;
  background: var(--color-surface);
  color: var(--color-muted);
}

/* =========================================================
 * レイアウト（2カラム／1カラム対応）
 * ========================================================= */
.c-entryguide__grid,
.c-entryguide__single {
  background: #fff;
  border-radius: 6px;
  margin-top: 20px;
}

.c-entryguide__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .c-entryguide__grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .c-entryguide__single {
    padding: 0;
      border: 0;
      margin: 0;
  }
}

/* =========================================================
 * 見出し・ボックス
 * ========================================================= */
.c-entryguide__col h3,
.c-entryguide__single h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-primary-ink);
  margin-bottom: 1rem;
}

.c-entryguide__box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
    
    .c-entryguide__box {
        margin: 0;
        padding: 0;
        border: 0;
        background-color: #fff;
    }
}

/* =========================================================
 * テキスト・料金表示
 * ========================================================= */
.c-entryguide__fee-title {
  font-weight: 700;
  margin: 0.5em 0;
}

.c-entryguide__fee-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-green);
  margin: 0.5em 0;
}

/* =========================================================
 * リスト
 * ========================================================= */
.c-entryguide__list {
  list-style: none;
  padding: 0;
  margin: 1em 0;
}
.c-entryguide__list li {
  margin-bottom: .6em;
}
.c-entryguide__list i {
  color: var(--color-primary);
  margin-right: .4em;
}

/* =========================================================
 * ステップリスト（共通）
 * ========================================================= */
.c-entryguide__steps {
  list-style: none;
  padding: 0;
  margin: 1em 0 0;
}
.c-entryguide__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1em;
  background: var(--color-surface);
  padding: 12px 16px;
  border-radius: 6px;
}
.c-entryguide__steps span {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--color-green);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================================
 * テーブル
 * ========================================================= */
.c-entryguide__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 1em;
}
.c-entryguide__table th,
.c-entryguide__table td {
  border: 1px solid var(--color-border);
  text-align: center;
  padding: 8px;
}
.c-entryguide__table th {
  background: var(--color-surface);
  font-weight: 600;
}

/* =========================================================
 * FAQ（よくあるご質問）
 * ========================================================= */
.c-faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.c-faq__q {
  font-weight: 300;
  color: var(--color-primary-ink);
  margin-bottom: .5em;
    font-size: 1.3em;
}

.c-faq__q i {
  color: var(--color-green);
  margin-right: .4em;
}

.c-faq__a {
  font-size: .95rem;
  color: var(--color-text);
}

/* =========================================================
 * 会員インタビュー
 * ========================================================= */

.c-interview {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
}

/* 一覧部 */
.c-interview__title {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-primary-ink);
  border-left: 6px solid var(--color-primary);
  padding-left: .6em;
  margin-bottom: 24px;
}

.c-interview__thumbgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 80px;
}

.c-interview__thumb {
  display: block;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: all .2s ease;
}
.c-interview__thumb:hover {
  background: var(--color-green);
  color: #fff;
  border-color: var(--color-green);
    text-decoration: none;
    
}
.c-interview__thumb img {
  display: block;
}
.c-interview__thumb span {
  display: block;
  padding: 12px;
  font-weight: 300;
  color: var(--color-primary-ink);
}
.c-interview__thumb:hover span { color: #fff; }

/* 本文ブロック */
.c-interview__block {
  margin-bottom: 100px;
}

.c-interview__block h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-green);
  margin-bottom: 16px;
}
.c-interview__block h3 small {
  display: block;
  font-size: 1rem;
  color: var(--color-green);
  font-weight: 500;
}

/* 画像フロート */
.c-interview__photo--float {
  float:right;
  width: 280px;
  height: auto;
  margin: 0 0 0 40px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--color-border);
}
@media (max-width: 768px) {
    .c-interview__block h3{
        text-align: center;
        margin-bottom: 18px;
    }
  .c-interview__photo--float {
    float: none;
    width: 100%;
    margin: 0 0 40px 0;
  }
}

/* Q&Aスタイル */
.c-interview__qa {
  overflow: visible;
}
.c-interview__q {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  background: var(--color-green);
  color: #fff;
  padding: 5px 12px;
  border-radius: 3px;
  margin: 0;
}
.c-interview__q p {
  margin: 0;
  font-weight: 300;
}
.c-interview__q .qmark {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: var(--color-green);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
}

.c-interview__a {
  padding: 16px 18px;
  margin-bottom: 8px;
}
.c-interview__a p { margin: 0; line-height: 1.8; }

/* ページトップ */
.c-interview__pagetop {
  text-align: right;
  margin-top: 32px;
}
.c-interview__pagetop a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}
.c-interview__pagetop a:hover { text-decoration: underline; }
/* =========================================================
 * 会員インタビュー：SP表示レイアウト最適化
 * ========================================================= */
@media (max-width: 768px) {
  /* グリッドを縦方向の2カラムに */
  .c-interview__thumbgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    margin-bottom: 60px;
  }

  /* 各サムネをカード風に調整 */
  .c-interview__thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--color-border);
    padding: 8px;
    background: #fff;
  }

  /* 画像サイズ統一 */
  .c-interview__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
  }

  /* 会社名の配置と余白 */
  .c-interview__thumb span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-primary-ink);
    padding: 0;
    text-align: center;
    line-height: 1.4;
  }

  /* hover効果はSPでは軽く */
  .c-interview__thumb:hover {
    background: #f7f7f7;
    color: inherit;
    border-color: var(--color-border);
  }
}



/* =========================================================
 * 法人会とは
 * ========================================================= */
.c-about {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.8;
}

.c-about__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-ink);
  border-left: 6px solid var(--color-primary);
  padding-left: .6em;
  margin-bottom: 24px;
}

.c-about__section {
  margin-bottom: 60px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 24px;
}

.c-about__section h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-green);
  margin-bottom: 16px;
}

/* テーブル */
.c-about__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.c-about__table th,
.c-about__table td {
  border: 1px solid var(--color-border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.c-about__table th {
  background: var(--color-surface);
  font-weight: 600;
  color: var(--color-primary-ink);
}
.c-about__table td a {
  color: var(--color-primary);
  text-decoration: underline;
}
.c-about__table td a:hover { text-decoration: none; }

.c-about__tablewrap {
  overflow-x: auto;
}

/* =========================================================
 * 入会案内テーブル
 * ========================================================= */

.c-entryguide__table-wrap {
  display: grid;
  gap: 40px;
  margin-block: 40px;
}

.c-entryguide__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #333;
  background: #fff;
}

.c-entryguide__table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-primary-ink);
}

.c-entryguide__table th,
.c-entryguide__table td {
  border: 1px solid #333;
  padding: 8px 12px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.95rem;
}

.c-entryguide__table thead th {
  background: var(--color-surface);
  font-weight: 700;
  color: var(--color-primary-ink);
}
/* =========================================================
 * 入会案内テーブル：SP横スクロール対応
 * ========================================================= */
@media (max-width: 768px) {
  .c-entryguide__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-inline: auto;
  }

  .c-entryguide__table {
    min-width: 560px; /* テーブル全体を縮めつつ、読みやすさを維持 */
    width: 100%;
  }

  .c-entryguide__table caption {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    padding: 4px 0;
  }

  .c-entryguide__table th,
  .c-entryguide__table td {
    padding: 8px 10px;
    font-size: 0.9rem;
    white-space: nowrap; /* 折り返しを防止して横スクロール優先 */
  }

  /* スクロールバーを少し目立たせる */
  .c-entryguide__table-wrap::-webkit-scrollbar {
    height: 6px;
  }
  .c-entryguide__table-wrap::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 3px;
  }
  .c-entryguide__table-wrap::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
}


/* =========================================================
 * 法人会とは（最終版）
 * ========================================================= */
.c-about {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.8;
}

.c-about__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-ink);
  border-left: 6px solid var(--color-primary);
  padding-left: .6em;
  margin-bottom: 24px;
}

.c-about__section {
  margin-bottom: 60px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 24px;
}

.c-about__section h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-green);
  margin-bottom: 8px; /* ← 16px → 半分に調整 */
}

/* テーブル */
.c-about__table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.c-about__table th,
.c-about__table td {
  border: 1px solid var(--color-border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.c-about__table th {
  background: var(--color-surface);
  font-weight: 600;
  color: var(--color-primary-ink);
}
.c-about__table td a {
  color: var(--color-primary-link);
  text-decoration: underline;
}
.c-about__table td a:hover { text-decoration: none; }

.c-about__tablewrap {
  overflow-x: auto;
}


/* 組織図 */
.c-about__organization figure {
  margin: 0;
  text-align: center;
  padding: 16px 0 0;
}
.c-about__organization img {
  max-width: 100%;
}
/* =========================================================
 * 法人会とは（導入＋本文ブロック／余白4分の1調整版）
 * ========================================================= */
.c-aboutlead {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--color-text);
  line-height: 1.9;
}

/* リードタイトル帯 */
.c-aboutlead__leadtitle {
  background: var(--color-primary-ink);
  color: #fff;
  border-radius: 6px;
  padding: 12px 16px; /* ← 縦縮小 */
  margin-bottom: 10px; /* ← 元20px */
}
.c-aboutlead__leadtitle h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-aboutlead__leadtitle i {
  color: var(--color-primary);
}

/* 導入部 */
.c-aboutlead__intro {
  margin-bottom: 10px; /* ← 元20px */
}
.c-aboutlead__intro p {
  margin-bottom: 0.6em; /* ← 元1.2em */
}

/* 各ブロック */
.c-aboutlead__block {
  margin-top: 10px;   /* ← 元20px */
  padding-top: 5px;   /* ← 新規追加：セクション間の軽い間隔 */
}
.c-aboutlead__block h3 {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-green);
  margin-bottom: 4px; /* ← 元6px */
}
.c-aboutlead__block p {
  margin: 0;
}

/* 支部リスト */
.c-aboutlead__list {
  columns: 2;
  column-gap: 20px;
  list-style: none;
  padding: 0;
  margin: 6px 0 0
}
.c-aboutlead__list li {
  margin-bottom: .25em;
    border-top: solid 1px #ddd;;
    padding: .25em;
}
@media (max-width: 768px) {
  .c-aboutlead__list {
    columns: 1;
      margin: 0;
      padding: 0;
  }
}

/* =========================================================
 * Single：本文カラム用差分クラス（アーカイブと同じ2カラム前提）
 * ========================================================= */
/* アーカイブと同じ .l-container .l-flex .l-content 構造を維持しつつ、
   本文カラムの gap 影響を受けないように調整する */
.l-content--single {
  display: block !important;  /* grid/flexの影響を打ち消し */
  gap: 0 !important;
}

/* 見出し〜メタ〜開催日〜本文の縦リズムを再構成 */
.l-content--single > .t-h3 { margin: 0 0 8px; }
.l-content--single > .c-meta { margin: 4px 0 6px; }
.l-content--single > .c-eventdate { margin: 4px 0 24px; }

/* メタ行（投稿日＋カテゴリチップ） */
.c-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.4;
}

/* 投稿日 */
.c-meta time {
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0;
}

/* カテゴリチップ（アーカイブと共通見え方） */
.c-meta__cat {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.3;
  background: var(--color-primary);
  color: #fff;
}

/* 種別別カラー（イベント／セミナー） */
.c-meta__cat[data-cat="event"]   { background-color: var(--color-primary); } /* 青 */
.c-meta__cat[data-cat="seminar"] { background-color: var(--color-green); }   /* 緑 */

/* 開催日 */
.c-eventdate {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}
.c-eventdate strong {
  font-weight: 600;
  color: var(--color-primary-ink);
}

/* SP最適化：文字サイズと詰め */
@media (max-width: 768px) {
  .l-content--single > .t-h3 { margin-bottom: 6px; }
  .c-meta { gap: 6px 10px; font-size: 0.9rem; }
  .c-eventdate { font-size: 0.9rem; margin-bottom: 20px; }
}

/* 法人会とは？追加画像 --*/
.outline-aboutus-pic{
    margin: 40px 40px 0;
}
.outline-aboutus-pic img{
}
@media (max-width: 768px) {
    
.outline-aboutus-pic{
    margin: 20px 20px 0;
}
}