/* 一覧 */
#list article {
  position: relative;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 2rem;
  padding-right: 4rem;
  margin-bottom: 2rem;
}
#list article::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 1.5rem;
  right: 0.25rem;
  height: 3.0rem;
  width: 3.0rem;
  background-color: #eaeaea;
  mask: url(/layout/img/ico_arrow_wh.svg) center no-repeat;
}
#list article div:first-child {
  font-size: 0.75rem;
  color: #0b96d3;
}
#list article h1 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
#list a:hover {
  cursor: pointer;
  text-decoration: underline;
}

/* 記事 */
#post article {
  padding-bottom: 2rem;
}
#post #post-date {
  font-size: 1rem;
  color: #0b96d3;
}
#post #post-title {
  border-bottom: 1px solid #eaeaea;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0.25rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
}

#post article a {
  color: #0b96d3;
  text-decoration: underline;
}
#post article ol {
  list-style: decimal;
  margin-left: 1.5rem;
}
#post article ul {
  list-style: disc;
  margin-left: 1.5rem;
}
#post article img {
  display: inline-block;
}

/* 文字サイズ */
.ql-size-small {
  font-size: 0.75em;
}
.ql-size-large {
  font-size: 1.5em;
}
.ql-size-huge {
  font-size: 2.5em;
}
/* 文字揃え */
.ql-align-center {
  text-align: center;
}
.ql-align-right {
  text-align: right;
}
/* インデント */
.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}

/* ナビゲーション */
#list aside,
#post aside {
  display: flex;
  gap: 1.25rem;
}
#list aside a,
#post aside a {
  flex: 1 1 0%;
  display: block;
  position: relative;
  background: #0b96d3;
  color: white;
  font-size: 0.75rem;
  padding: 0.75rem;
  text-align: center;
}
#list aside a:hover,
#post aside a:hover {
  cursor: pointer;
  opacity: 0.9;
}
#list aside a[href=''],
#post aside a[href=''] {
  visibility: hidden;
}
#next-post::before,
#prev-post::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 1.0rem;
  width: 1.0rem;
  background: url(/layout/img/ico_arrow_wh.svg) center no-repeat;
}
#next-post::before {
  left: 0.25rem;
  transform: rotate(180deg);
}
#prev-post::before {
  right: 0.25rem;
}

/* 最新記事 */
#recently h3 {
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.25rem;
}
#recently ul {
  padding: 0 1.25rem;
  border: solid 1px #eaeaea;
}
#recently li {
  padding: 1.25rem 0;
  border-bottom: solid 1px #eaeaea;
}
#recently li:last-child {
  border-bottom: none;
}

#recently li a:hover {
  cursor: pointer;
  text-decoration: underline;
}
#recently li a div:first-child {
  font-size: 0.75rem;
  color: #0b96d3;
}
#recently li a div:last-child {
  font-size: 0.75rem;
  color: #22529a;
}
