article.tegalog {
	border-bottom: 1px solid var(--grey);
    padding: 30px 16px;
}
@media (min-width: 768px) {
  article.tegalog {
    padding: 30px 35px;
  }
}
article.tegalog:last-child {
	border: none;
	}
iframe {
	max-width: 100%;
	}
.embeddedimage {
	max-width: 100%;
	max-height: 500px;
	width: auto;
	height: auto;
	border-radius: 10px;
}
.onelogdate {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 1em;
	}
.onelogdate:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  margin: 0 10px 1px 0;
}
.onelogcat {
	font-size: 90%;
	color: var(--text-grey);
	margin-top: 1em;
	text-align: right;
	}
.comment {
	word-break: break-word;
	}
a.readmorebutton,a.readmorebutton.readmoreclose {
	padding: 10px;
	margin: 10px 0;
	background: #CDC5CA;
	color: var(--text-main);
	text-align: center;
	border-radius: 30px;
	list-style: none;
	font-size: 14px;
	transition: 0.25s ease;
	display: block;
	width: 100%;
	}
summary.foldswitch {
	padding: 10px;
	margin: 10px 0;
	background: #CDC5CA;
	color: var(--text-main);
	text-align: center;
	cursor: pointer;
	border-radius: 30px;
	list-style: none;
	font-size: 14px;
	transition: 0.25s ease;
	}
summary.foldswitch::-webkit-details-marker {
	display: none;
	}
a.readmorebutton:hover,summary.foldswitch:hover {
	filter: brightness(0.9);
	}
.pagenavi {
	text-align: center;
	margin: 50px 0;
	}
p.pagenums {
	text-align: center;
	}
a.pagenumlink {
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: #ffffff;
    width: 27px;
    height: 27px;
    line-height: 25px;
}
a.pagenumlink.pagenumhere {
    background: var(--accent0);
}
a.pagenumlink:hover {
    opacity: 0.8;
}
.comment a.nsfw {
  position: relative;
  overflow: hidden;
  display: block;
  max-width: 400px;
  border-radius: 10px;
}
.comment a.nsfw img {
  filter: blur(20px) brightness(0.7);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.comment a.nsfw::before {
  content: url("../img/exclamation-triangle.svg");
  vertical-align: middle;
  position: absolute;
  z-index: 2;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  transform: scale(0.8);
}
@media (min-width: 481px) {.comment a.nsfw::before { transform: scale(1); }}
div.decorationH {
	margin-top: 20px;
	}
.decorationB {
	font-weight: 500;
	}
.decorationE {
	font-style: normal;
	font-weight: bold;
	background: linear-gradient(transparent 70%, #C493A180 70%);
	
	}
.nodata,.nolist {
	margin: 30px;
    font-size: 14px;
    }

.decorationQ {
	border-left: 5px double var(--accent);
	color: var(--text-grey);
	margin: 1em 0.3em 1em 1em;
	padding: 0.75em 0.5em;
	font-size: 0.95em;
	display: block;					/* ※Ver 2.2.0以降必須の記述 */
	}
.decorationQ::before,
.decorationQ::after {
	content: '';			/* 標準で付加されてしまう引用符を無効にする */
	}
.decorationQ + br {
	display: none;	/* 引用直後の改行を無効化する */
	}
.deco-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2カラム */
  gap: 8px; /* 画像の間隔 */
}

.deco-grid-2 img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形 */
  object-fit: cover;  /* はみ出さずトリミング */
  display: block;
}
	/* --------------- */
	/* ▼埋め込みTweet */	/* これはツイートが埋め込まれる処理「前」用の装飾です。実際に埋め込まれるツイートはTwitter側のiframeで装飾されますので、てがろぐ側では指定できません。(ただし横幅を制限することはできます。→後述) */
	/* --------------- */
	blockquote.twitter-tweet {
		background-color: #f8f8f8;
		border: 1px dashed #ddd;
		border-radius: 9px;
		margin: 0.3em 0;
		padding: 1em;
		font-size: 0.95em;
		color: #999;
		text-shadow: 1px 1px 1px #fff;
	}

	/* ▼埋め込みツイートの横幅を強制的に制限 */
	div.twitter-tweet {
		max-width: 350px !important;
	}
/* -----------------------------------
ギャラリー
----------------------------------- */
.container ul.illust {
  list-style: none;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px;
}

.container ul.illust li {
  width: 49%;
  position: relative;
  margin: 0 0 2%;
}

.container ul.illust li:nth-of-type(2n) {
  margin-left: 2%;
}

@media (min-width: 481px) {
  .container ul.illust li {
    width: 32%;
  }
  .container ul.illust li:nth-of-type(2n) {
    margin-left: 0;
  }
  .container ul.illust li:not(:nth-of-type(3n)) {
    margin-right: 2%;
  }
}

.container ul.illust li:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.container ul.illust li a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.container ul.illust li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.container ul.illust.sum-sm li {
  width: 32%;
}

.container ul.illust.sum-sm li:nth-of-type(2n) {
  margin-left: 0%;
}

.container ul.illust.sum-sm li:not(:nth-of-type(3n)) {
  margin-right: 2%;
}

@media (min-width: 481px) {
  .container ul.illust.sum-sm li {
    width: 24%;
    margin: 0 0 calc(4% / 3);
  }
  .container ul.illust.sum-sm li:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
  .container ul.illust.sum-sm li:not(:nth-of-type(4n)) {
    margin-right: calc(4% / 3);
  }
}

@media (min-width: 768px) {
  .container ul.illust.sum-sm li {
    width: calc((100% / 8) - 0.5%);
    margin: 0 0 calc(4% / 7);
  }
  .container ul.illust.sum-sm li:not(:nth-of-type(4n)) {
    margin-right: 0;
  }
  .container ul.illust.sum-sm li:not(:nth-of-type(8n)) {
    margin-right: calc(4% / 7);
  }
}
.overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
ul.illust a.nsfw{
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background-color: #0008;
}
ul.illust a.nsfw img{
	filter: blur(20px) brightness(0.7);
	opacity: 0.7;
}
ul.illust a.nsfw::before{
  content: url("../img/exclamation-triangle.svg");
	left: calc(50% - 20px);
	line-height: 1;
	position: absolute;
	top: calc(50% - 20px);
	z-index: 1;
}
/* ================================================================ */
/* てがろぐVer 4.5.5β以降で使える、カード型リンク用CSSの抜粋です。 */
/* お使いのスキンのCSSに追記するなどしてご活用下さい。              */
/* ================================================================ */

	/* ---------------------- */
	/* ▼カード型リンクの装飾 */
	/* ---------------------- */
	.cardlink {
		display: inline-block;
		width: 100%;
		max-width: 500px;               /* 最大幅 (※横幅を制限したくない場合はこれを削除して下さい) */
		padding: 0 0.25em 0.5em 0;      /* 内側の余白量 */
		font-size: 0.8rem;              /* 文字サイズ */
		text-decoration: none;          /* リンク文字の下線を消す */
		vertical-align: middle;         /* 行内の上下方向では中央配置 */
	}

		/* ------------------------------------- */
		/* リンクカードの装飾(サイズS/L共通部分) */		/* ※後述の「サイズS用の追記」や「サイズL用の追記」と合わせて、1つのカードデザインになります。 */
		/* ------------------------------------- */
		/* カード外枠 */
		.cardlinkbox {
			border: 1px solid #ccc;    /* 枠線 */
			border-radius: 7px;        /* 角丸 */
			background-color: white;   /* 背景色 */
			display: flex;             /* 内部レイアウトのFlexbox化 */
		}
		/* (マウスが載ったとき) */
		.cardlinkbox:hover {
			background-color: #f5f5f5; /* 背景色 */
			transition: .3s;
		}
			/* ▽リンクカード内の画像枠 (※読み込まれたog:imageは、この枠に《背景画像として》描画されます) */
			.cardlinkimage {
				background-image: linear-gradient(-30deg, #8a8, #e0f0e0);  /* プレースホルダ的な背景グラデーション(※og:imageの画像指定が読み込まれたら、この値は上書きされます) */
				background-size: cover;             /* 背景画像で枠を埋める */
				background-position: center center; /* 背景画像を中央に寄せる */
				background-repeat: no-repeat;       /* 背景画像を繰り返さない */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardlinktextbox {
				display: flex;          /* Flexbox化 */
				flex-direction: column; /* 子要素を縦方向に並べる */
				padding: 0.5em 1em;     /* 内側の余白量 */
			}
				/* ▽リンクカードのテキスト枠内の3要素共通 */
				.cardlinktitle,
				.cardlinkdescription,
				.cardlinkurl {
					/* ↓表示行数を制限するための準備 (※システム側では文字数は制限せずに「記述されている全文字」をHTMLに出力しますので、表示分量を制限したい場合はCSSで制御する必要があります。) */
					display: -webkit-box;          /* -webkit-line-clampを使うために必要な記述1 ※A */
					-webkit-box-orient: vertical;  /* -webkit-line-clampを使うために必要な記述2 ※A */
					overflow: hidden;              /* 表示量を制限する場合に必須の記述 */
					/* ↓制限の仕様 */
					line-clamp: 1;                 /* 1行だけ見せる (将来的にはこれだけで実現可能かも) */
					-webkit-line-clamp: 1;         /* 1行だけ見せる (今のブラウザにはこちらが必要で、そのためには上記「※A」も必要) */
					text-overflow: ellipsis;       /* 省略記号(三点リーダー) */
				}
				/* リンクタイトル */
				.cardlinktitle {
					padding-bottom: 0.25em;        /* 内側下端の余白量 */
				}
				/* リンク概要文 */
				.cardlinkdescription {
					line-height:1.3;               /* 行の高さ */
					color:#555;                    /* 文字色 */
					line-clamp: 2;                 /* (既存指定の上書き) 最大2行まで見せる */
					-webkit-line-clamp: 2;         /* (既存指定の上書き) 最大2行まで見せる */
				}
				/* リンクドメイン */
				.cardlinkurl {
					color: #999;                   /* 文字色 */
				}

		/* ----------------------------------- */
		/* リンクカードの装飾(サイズS用の追記) */		/* 前述の「サイズS/L共通部分」と合わせて、1つのカードデザインになります。 */
		/* ----------------------------------- */
		.cardsize-S {
			flex-direction: row;                /* 画像とテキストは横に並べる(Flexbox) */
		}
			/* ▽リンクカード内の画像枠 */
			.cardsize-S .cardlinkimage {
				min-width: 100px;           /* 最小の横幅 */
				min-height: 100px;          /* 最小の高さ */
				border-radius: 6px 0 0 6px; /* 左側だけ角丸 */
				flex-shrink: 0;             /* 枠サイズを自動縮小させない */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardsize-S .cardlinktextbox {
				border-left: 1px solid #ccc; /* 左側の枠線 */
				justify-content:center;      /* Flexboxの上下方向での中央寄せ */
			}
				/* ▽リンクカードのテキスト枠内の3要素 */
				.cardsize-S .cardlinktitle { font-weight: bold;color: #444444; }        /* 太字 */
				.cardsize-S .cardlinktitle { order: 2; }        /* タイトルは、2番目に表示 */
				.cardsize-S .cardlinkdescription { order: 3; }  /* 概要文　は、3番目に表示 */
				.cardsize-S .cardlinkurl { order: 1; }          /* ドメインは、1番上に表示 */

		/* ----------------------------------- */
		/* リンクカードの装飾(サイズL用の追記) */		/* 前述の「サイズS/L共通部分」と合わせて、1つのカードデザインになります。 */
		/* ----------------------------------- */
		.cardsize-L {
			flex-direction: column;             /* 画像とテキストは縦に並べる(Flexbox) */
		}
			/* ▽リンクカード内の画像枠 */
			.cardsize-L .cardlinkimage {
				aspect-ratio: 1.91 / 1;     /* 画像枠の縦横比を指定= (横)1.91：(縦)1 */
				width: 100%;                /* 横幅は枠最大に拡げる */
				height: auto;               /* 高さは自動計算 */
				border-radius: 6px 6px 0 0; /* 上側だけ角丸 */
			}
			/* ▽リンクカード内のテキスト枠 */
			.cardsize-L .cardlinktextbox {
				border-top: 1px solid #ccc; /* 上側の枠線 */
			}
				/* ▽リンクカードのテキスト枠内の3要素 */
				.cardsize-L .cardlinktitle { font-weight: bold;color: #444444; }        /* 太字 */
				.cardsize-L .cardlinkdescription { min-height: 2.5em; }  /* 内容量が少ない場合でも一定の高さを確保 */
				.cardsize-L .cardlinkurl {
					border-top: 1px solid #ddd;  /* 上側の枠線 */
					margin-top:0.5em;            /* 上側の枠線より上の余白量 */
					padding-top:0.5em;           /* 上側の枠線より下の余白量 */
					font-size:0.75rem;           /* 文字サイズ(小さめ) */
				}