audio {
  margin: 1em 25%;
  width: 50%;
  height: 40px;
  accent-color: #1976d2;
  background: #f8f9fa;
  border-radius: 20px;
  outline: none;
  border: 1px solid #e3f2fd;
}

.sub_list #sub_group {
  overflow: auto;
}
.sub_list #sub_group ul {
  white-space: nowrap;
  flex-wrap: nowrap;
}

/* 記事 */
.c-section {
  /*padding: 0 10px;*/
}
.c-section * { /* 全文字サイズをユーザースタイルに */
  font-size: revert!important;
}
.c-section h2 {
  /*text-shadow: orange 1px 0 6px;*/
}
.c-section h3 {
  border-bottom: var(--bc) 1px solid;*/
}
.c-section h3::first-letter{
  padding-right: 0.1em;
  font-size: 120%;
  font-weight: bold;
  line-height: 1;
  color: orange;
}
.c-section table {
  margin: 10px auto;
  width: 100%;
}
.c-section iframe {
  margin: 10px auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}
.c-section img, .c-section video {
  margin: 10px auto;
}
.c-section .avatar {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.c-section__container {
  position: relative;
  margin: 0 auto;
  padding: 0 1em;
  max-width: 800px;
  /*background: var(--bc);*/
}
.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: 8em;
}
.more-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8em;
  content: "";
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,   /* 透明 */
    rgba(255, 255, 255, 1) 90%   /* 白フェードイン */
  );
}
/* 続きを読む */
.more-label {
  margin-top: -2em;
  padding: .5em 1em;
  width:fit-content;
  background: transparent;
;
}
.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;
}
