/* 記事 */
.c-section * { /* 全文字サイズをユーザースタイルに */
  font-size: revert!important;
}
.c-section {
  padding: 0 10px;
}
.c-section h2 {
  border-bottom: 1px solid;
  text-align: center;
}
.c-section h3 {
  /*padding-left: 0.3em;*/
  /*border-left: 9px solid;*/
}
.c-section h3::first-letter{
  font-size: 130%;     /* 好みで数値調整（% / em / rem も可） */
  font-weight: bold;    /* 太字にする場合 */
  line-height: 1;      /* 行高を詰めて揃える */
  color: #ff6d00;   /* アクセント色を付けたい場合 */
}
.c-section iframe {
  margin: 10px auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}
.c-section img {
  margin: 10px auto;
}
.c-section table{
  display:block;             /* テーブルをブロック要素化 */
  overflow-x:auto;           /* 横スクロール許可 */
  margin:10px auto;          /* ご指定の余白はそのまま */
  width:100%;                /* 親幅いっぱいに伸ばす */
}
.c-section .avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.c-section__container {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
}
.c-section__label {
  font-size: 16px;
}
.c-section__content {
  margin: 0;
}
.c-section__content p:first-child {
  margin-top: 0;
}
/* //記事 */

/* 最初リストの色を変える */
.p-sub-category ul > a:first-of-type {
  background: var(--bc);
}

/* もっと見る */
.more-check {
  display: none;
}
.more-content {
  position: relative;
  overflow: hidden;
  height: 9em;
}
.more-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 9em;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,   /* 透明 */
    rgba(255, 255, 255, 1) 90%   /* 白フェードイン */
  );
}
/* 続きを読む */
.more-label {
  margin-top: -2em;
  color: revert;
  width:fit-content;
}
.more-label:before {
  font-family: FontAwesome;
  content: 'この記事を読む \f13a';
  font-weight: bold;
}
/* ボタン非表示 */
.more-check:checked ~ .more-label{
  margin: 0 auto 3em;
  position: static;
  transform: translateX(0);
}
/* グラデーション削除 */
.more-check:checked ~ .more-content::before {
  display: none;
}
/* 閉じるボタン */
.more-check:checked ~ .more-label:before {
  content: '記事を閉じる \f139';
  font-weight: bold;
}
/* 高さを戻す*/
.more-check:checked ~ .more-content {
  height: auto;
  overflow: visible;
  transition: 2s;
}
