@charset "utf-8";

/* …………………………………………………………………………………………… */
/* てがろぐ -Fumy Otegaru Memo Logger- 標準スタイルシート for Ver 4.1.0＋ */
/* …………………………………………………………………………………………… */
/* ※装飾面のカスタマイズ方法については、配布サイト内にある「カスタマイズ方法」ページ https://www.nishishi.com/cgi/tegalog/custom/ の『装飾のカスタマイズ方法』区画にある解説や記述例もご参照下さい。 */

/* Table of Contents：
   -------------------
	■全体共通装飾
		▼リンクの装飾
		▼URLが書かれた場合の装飾
		▼汎用装飾(てがろぐ専用記法で書かれた場合のみ)：文字
		▼自由装飾用の装飾の例
		▼汎用装飾(てがろぐ専用記法で書かれた場合のみ)：画像
		▼埋め込み画像
		▼埋め込み動画
		▼埋め込みTweet
		▼検索語のハイライト

	■ページ最上部(ヘッダ)領域
		▼タイトル区画
		▼管理・投稿ボタン区画
		▼ヘッダ領域：画面の横幅が800px以上の場合
		▼ヘッダ領域：画面の横幅が480px以下の場合

	■入力フォームの表示領域
		▼本文入力欄
		▼投稿コントロール部分(ボタンや字数カウンタなど)
		▼投稿ボタン
		▼文字装飾ボタン群
		▼カテゴリ選択チェックボックス群

	■段組構成（画面の幅が800px以上ある広い場合限定）
		▼大外枠の装飾
		▼メイン段の装飾
		▼サブ段の装飾

	■メイン(ログ掲載)領域
		▼表示対象の限定時などの「限定条件」表示行
		▼日付境界バー

	■投稿ボックス(一発言)ごとの表示
		▼投稿情報カラム
			▼ユーザアイコン＆ユーザ名リンク
		▼投稿本文カラム
			▼投稿本文
			▼続きを読むリンク（ボタン）
			▼投稿日時やカテゴリ名などの情報表示
		▼画面幅が狭い場合の上書き装飾

	■鍵付き(パスワード保護)投稿に表示される鍵入力フォームの装飾
		▼鍵違いエラーの表示
		▼入力フォーム枠
			▼入力欄前のガイド文
			▼鍵入力欄
			▼送信ボタン

	■一発言だけが表示される際に追加表示されるユーティリティリンク群の装飾

	■ページナビゲーション領域
		▼ページ前後移動リンク群ボックス全体
		▼ページ番号リンク群ボックス全体
		▼限定解除リンク(＝HOMEに戻るリンク)

	■サブ領域
		▼サブ領域の見出し(DASHBOARD)部分
		▼検索窓区画
		▼画像一覧リスト区画
			▼各画像の装飾
			▼総数・総サイズの情報
		▼日付一覧リスト・日付検索区画
			▼日付リンクリスト区画
			▼日付プルダウンメニュー区画
		▼ハッシュタグリスト区画
		▼カテゴリツリー区画
			▼カテゴリツリー内の各要素（アイコン・カテゴリ名・該当件数・概要等）
		▼新着投稿リスト区画
		▼カレンダー区画
		▼フリースペース区画

	■ページ最下部(フッタ)領域
*/


/* ============== */
/* ■全体共通装飾 */
/* ============== */
* {
	box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background-color: #f6f6f8;
	color: #524ea3;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

main {
	display: flex;
	gap: 24px;
	width: calc(100% - 32px);
	max-width: 1000px;
	margin: 16px auto 0;
}

/* -------------- */
/* ▼リンクの装飾 */
/* -------------- */
a:link {
	color: #da4666;
	text-decoration: none;
}

/* 未訪問リンク */
a:visited {
	color: #da4666;
}

/* 既訪問リンク */
a:hover {
	opacity: .65;
}

/* マウスが載ったとき */

/* ------------------------- */
/* ▼URLが書かれた場合の装飾 */
/* ------------------------- */
.url {
	word-break: break-all;
	/* 自動リンクのはみ出しを防ぐ */
}

/* ---------------------------------------------------- */
/* ▼汎用装飾(てがろぐ専用記法で書かれた場合のみ)：文字 */
/* ---------------------------------------------------- */
/* B:太字(Bold) */
.decorationB {
	font-weight: bold;
	/* 太字 */
}

/* D:削除(Delete) */
.decorationD {
	color: #888;
	/* 文字色 */
	text-decoration-line: line-through;
	/* 取り消し線 */
	text-decoration-color: #da4666;
	/* 線の色 */
}

/* E:強調(Emphasis) */
.decorationE {
	display: block;
	width: 100%;
	position: relative;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #524ea3;
	font-style: normal;
	margin: 20px auto 24px;
	padding-bottom: 8px;
}

/* I:斜体(Italic) */
.decorationI {
	font-style: italic;
	/* 斜体 */
}

/* Q:引用(Quote) */
.decorationQ {
	margin: 1em 0.3em 1em 1em;
	/* 外側の余白(上→右→下→左) */
	padding: 0.75em 0.5em;
	/* 内側の余白(上下→左右) */
	border-left: 5px double #da4666;
	/* 左端の枠線 */
	background-color: #ffffff;
	/* 背景色 */
	font-size: 0.95em;
	/* 文字サイズ */
	display: block;
	/* ※Ver 2.2.0以降必須の記述 */
}

.decorationQ::before,
.decorationQ::after {
	content: '';
	/* 標準で付加されてしまう引用符を無効にする */
}

.decorationQ+br {
	display: none;
	/* 引用直後の改行を無効化する */
}

/* S:小文字(Small) */
.decorationS {
	font-size: 0.8em;
	/* 文字サイズ */
}

/* T:極小文字(Tiny) */
.decorationT {
	font-size: 0.6em;
	/* 文字サイズ */
}

/* U:下線(Underline) */
.decorationU {
	text-decoration-line: underline;
	/* 線位置 */
	text-decoration-style: double;
	/* 線種類 */
	text-decoration-color: lime;
	/* 線配色 */
}

/* ---------------------- */
/* ▼自由装飾用の装飾の例 */
/* 自由装飾は [F:myclass:対象文字] の記法で <span class="deco-myclass">対象文字</span> のようにマークアップされる機能です。あらかじめclassを用意しておくことで自由な装飾を個数制限なく使い分けられます。 */
/* ---------------------- */
/* 投稿者の自由な記述によって意図せずページが崩れてしまうのを防ぐために、適用されるclass名の先頭には必ず deco- が付加されます。 */


.deco-code {
	display: inline-block;
	/* インラインブロック化 */
	font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace;
	/* 等幅フォント */
	background-color: snow;
	/* 背景色 */
	color: black;
	/* 文字色 */
	border: 1px solid #eee;
	/* 枠線 */
	border-radius: 3px;
	/* 角丸 */
	padding: 0px 3px;
	/* 内側の余白量 */
}



/* -------------- */
/* ▼埋め込み画像 */
/* -------------- */
/* ▽画像ボックス(FIGオプション指定時) */
.embeddedpictbox {
	margin: 0;
	padding: 0;
	display: block;
	text-align: center;
	border-collapse: collapse;
}

/* キャプション */
.embeddedpictbox figcaption {
	display: table-caption;
	/* キャプションが画像幅から外に出ないようにする */
	caption-side: bottom;
	/* キャプションの位置(上にしたければtop) */
	font-size: 0.8em;
	/* 文字サイズ */
	text-align: center;
	/* センタリング */
}

/* 画像ボックスに含まれる画像 */
.embeddedpictbox img {
	vertical-align: middle;
}

/* ▽画像リンク */
.imagelink {
	display: inline-block;
	line-height: 1;
	/* 表示形態によっては画像の下に余計な空白が出るのを防ぐ対策 */
	vertical-align: inherit;
	/* 同上 */
}

/* ▽画像そのもの */
.embeddedimage {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 240px;
	margin: 0 auto;
}

/* ▽フラグ付き画像 (※設定や採用記法によって出力パターンが複数あるため、あらゆるパターンに対応させるべく同じスタイルを2重に指定しています。) */
figure.nsfw {
	overflow: hidden;
	/* ぼかし領域がfigureのボックスからはみ出ないようにする */
}

.imagelink.nsfw {
	overflow: hidden;
	/* ぼかし領域がfigureのボックスからはみ出ないようにする */
}

img.nsfw {
	filter: blur(9px);
	/* ぼかす */
}

/* -------------- */
/* ▼埋め込み動画 */
/* -------------- */
@media all and (max-width: 769px) {
	main{
		display: block;
	}
	.embeddedmovie {
		display: inline-block;
		max-width: 100%;
		/* はみ出ないようにする */
		width: auto;
		height: auto;
	}
}

/* --------------- */
/* ▼埋め込み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: 650px !important;
	margin: 0 auto;
}
div.twitter-tweet iframe{
	width: 100% !important;
}

/* -------------------- */
/* ▼検索語のハイライト */
/* -------------------- */
.searchword {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #aaf0aa 60%);
	/* 文字の下半分くらいにマーカーっぽい線を引く */
}

/* ========================== */
/* ■ページ最上部(ヘッダ)領域 */
/* ========================== */

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 32px);
	max-width: 1000px;
	background-color: #d81b60;
	color: #ffffff;
	border-radius: 16px;
	margin: 16px auto 0;
	padding: 16px;
}

.headerLogo {
	gap: 16px;
	font-size: 12px;
	margin: 0;
}

.headerLogo img {
	width: 70px;
}

nav ul {
	display: flex;
	gap: 24px;
	font-size: 14px;
	font-weight: bold;
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

nav ul a {
	position: relative;
	color: #ffffff;
	text-decoration: none;
}

nav ul a:visited {
	color: #ffffff;
}

a .material-symbols-outlined.contactIcon {
	font-size: 18px;
	padding: 0 8px;
}

/* ---------------------- */
/* ▼管理・投稿ボタン区画 */
/* ---------------------- */
.headcontrol {
	display: table-cell;
	/* タイトルとボタンで2段組 */
	text-align: right;
	/* 右寄せ */
	vertical-align: middle;
	/* 上下の中心寄せ */
	padding: 0 3px;
	/* 内側の余白量 */
}

/* ▼ボタンの包含ボックス */
.control-links {
	margin: 0;
	/* 外側の余白量 */
}

/* ▼管理・投稿用リンクボタン */
.headcontrol a {
	display: inline-block;
	/* インラインブロック化 */
	text-align: center;
	/* センタリング */
	font-size: 12px;
	background-color: #ffffff;
	/* 背景グラデーション */
	text-decoration: none;
	/* 下線を消す */
	white-space: nowrap;
	/* 折り返さない */
}

/* ▼管理・投稿用リンクボタンにマウスが載った際 */
.headcontrol a:hover {
	opacity: .65;
}

/* ----------------------------------------- */
/* ▼ヘッダ領域：画面の横幅が800px以上の場合 */
/* ----------------------------------------- */
@media all and (min-width: 800px) {

	/* 投稿・管理ボタン区画 */
	.headcontrol {
		white-space: nowrap;
		/* ヘッダ領域のボタン部分を横並びに強制する */
	}

	/* タイトル区画 */
	.mainguide {
		line-height: 1;
		/* 行の高さ */
	}
}

/* ----------------------------------------- */
/* ▼ヘッダ領域：画面の横幅が480px以下の場合 */
/* ----------------------------------------- */
@media all and (max-width: 480px) {

	/* タイトル区画 */
	.subtitle {
		font-size: 0.35em;
		/* 文字サイズ */
		vertical-align: middle;
		/* 上下の中心寄せ */
	}

	.mainguide {
		font-size: 0.8em;
		/* 文字サイズ */
		line-height: 1.25;
		/* 行の高さ */
	}
}


/* ======================== */
/* ■入力フォームの表示領域 */
/* ※これはQUICKPOST用です。新規投稿専用画面や編集画面ではCGI内蔵のCSSが使われるため、ここの記述は適用されません。 */
/* ======================== */

.postform {
	background-color: #eee;
	/* 背景色 */
	margin: 1em;
	/* 外側の余白量 */
	padding: 1em;
	/* 内側の余白量 */
}

.postform p {
	margin: 0;
}

/* ------------ */
/* ▼本文入力欄 */
/* ------------ */
textarea.tegalogpost {
	/* 枠線 */
	border-radius: 0.67em;
	/* 背景色 */
	font-size: 0.9rem;
	/* 文字サイズ */
	padding: 0.5em;
	/* 内側の余白量 */
	margin-bottom: 0.25em;
	/* 外側下の余白量 */
	box-sizing: border-box;
	/* サイズ解釈方法 */
	width: 100%;
	/* 横幅 */
	height: 4.3em;
	/* 高さ */
	overflow-wrap: break-word;
	/* 折り返し方法 */
	overflow: auto;
	/* はみ出した場合の処理 */
	line-height: 1.6;
}

/* ▽プレースホルダ(※入力文字数がゼロの際にだけ見える薄文字)の装飾 */
textarea.tegalogpost:placeholder-shown {
	color: #777;
}

/* 通常時 */
textarea.tegalogpost:focus:placeholder-shown {
	color: #bbb;
}

/* カーソルが入ったとき */
textarea.tegalogpost:-ms-input-placeholder {
	color: #aaa;
}

/* for IE */

/* 横幅800px以下の環境の場合 */
@media all and (max-width: 800px) {
	textarea.tegalogpost {
		font-size: 16px;
		/* 文字サイズ */
		padding: 0.4em;
		/* 内側の余白量 */
	}
}

/* ------------------------------------------------ */
/* ▼投稿コントロール部分(ボタンや字数カウンタなど) */
/* ------------------------------------------------ */
.line-control {
	margin: 0.25em 0;
	/* 外側の余白量 */
}

/* ------------ */
/* ▼投稿ボタン */
/* ------------ */
.postbutton {
	display: inline-block;
	/* インラインブロック化 */
	background: #da4666;
	color: white;
	font-size: 1rem;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	padding: 0.25em 0.75em;
}

/* ▼投稿ボタンにマウスが載ったとき */
.postbutton:hover {
	background-color: #00cc00;
	/* 背景色 */
}

/* ------------------ */
/* ▼文字装飾ボタン群 */
/* ★Ver 1.4.0以降で使用 */
/* ------------------ */
/* 掲載領域全体 */
.decoBtns {
	display: inline-block;
	margin-top: 0.5em;
}

/* 全ボタン装飾 */
.decoBtns input {
	min-width: 32px;
	min-height: 28px;
	margin: 1px;
	background-color: #eee;
	border: 1px solid #aaa;
	cursor: pointer;
	border-radius: 3px;
	font-size: 14px;
	vertical-align: middle;
}

/* マウス載る際 */
.decoBtns input:hover {
	background-color: #e5f1fb;
	border-color: #0078d7;
}

/* 太字  :B */
.decoBtnB {
	font-weight: bold;
}

/* 取消線:D */
.decoBtnD {
	text-decoration: line-through;
	text-decoration-style: double;
}

/* 斜体  :I */
.decoBtnI {
	font-style: italic;
}

/* 引用  :Q */
.decoBtnQ {
	font-style: italic;
}

/* 小さめ:S */
.decoBtnS {
	font-size: 12px;
}

/* 極小  :T */
.decoBtnT {
	font-size: 11px !important;
}

/* 下線  :U */
.decoBtnU {
	text-decoration: underline;
}

/* 文字色:C */
.decoBtnC {
	color: #7800d7;
}

/* 背景色:M */
.decoBtnM {
	color: #0078d7;
}

@media all and (min-width: 800px) {

	/* ▼文字装飾ボタン群 */
	.decoBtns {
		margin-top: 0;
	}
}

/* -------------------------------- */
/* ▼カテゴリ選択チェックボックス群 */
/* ★Ver 3.0.0以降で使用 */
/* -------------------------------- */
.catChecks {
	font-size: 0.9em;
	padding-top: 0.5em;
}

.catChecks label {
	display: inline-block;
	cursor: pointer;
	margin: 0 0.75em 0 0;
}

.catChecks label:hover {
	text-decoration: underline;
}

.catChecks input {
	min-width: 0;
	min-height: 0;
	margin-right: 0.2em;
}

/* 投稿欄下部：「鍵付き」チェックボックスと「個別鍵」ボタンの間を詰める一時的なスタイル */
.funcUIs .catChecks {
	margin: 0 0.75em 0 0;
}

.funcUIs .catChecks label {
	margin: 0;
}

/* ------------------------------------------ */
/* ▼表示対象の限定時などの「限定条件」表示行 */
/* ------------------------------------------ */
.situation {
	margin: 0 0 1em 0;
	/* 外側の余白量 */
	font-weight: bold;
	/* 太字 */
	color: green;
	/* 文字色 */
}

.situation:empty {
	display: none;
}

/* 限定表示がない場合は存在自体を消す */

/* -------------- */
/* ▼日付境界バー */
/* -------------- */
.dateseparator {
	background-color: #0a0;
	/* 背景色 */
	color: white;
	/* 文字色 */
	padding: 2px 1em;
	/* 内側の余白量 */
}

/* ▼日付境界バーの表示文字列の先頭に付加する記号 */
.dateseparator::before {
	content: '▼';
	/* 何も付け加えたくない場合はこの1行を消して下さい */
}

/* ▼日付境界バー内のリンク(ボタン) */
.dateseparator a {
	display: inline-block;
	/* インラインブロック化 */
	margin-left: 1.5em;
	/* 外側左の余白量 */
	color: #ffc;
	/* 文字色 */
	font-size: 0.75em;
	/* 文字サイズ */
	font-weight: normal;
	/* 太字を解除 */
	border: 1px solid #ffc;
	/* 枠線 */
	border-radius: 1em;
	/* 枠の角丸 */
	padding: 0px 1em;
	/* 内側の余白量 */
	text-decoration: none;
	/* 下線を消す */
	vertical-align: middle;
	/* 上下の中心寄せ */
}

/* ▼日付境界バー内のリンク(ボタン)にマウスが載ったとき */
.dateseparator a:hover {
	background-color: #cec;
	/* 背景色 */
	color: green;
	/* 文字色 */
	border-color: skyblue;
	/* 枠線の色 */
}


/* ================================ */
/* ■投稿ボックス(一発言)ごとの表示 */
/* ※この領域は、内側スキンで生成しているHTMLに対する装飾です。 */
/* ================================ */
.onelogbox {
	display: table;
	/* 投稿情報と投稿本文とで2段組 */
	border-collapse: separate;
	/* 段の間隔を空ける */
	border-spacing: 0 0.75em;
	/* 段の間隔量 */
	border-bottom: 1px #ccc dashed;
	/* 下線 */
	width: 100%;
	/* 横幅 */
}

/* ---------------- */
/* ▼投稿情報カラム */
/* ---------------- */

/* ‥‥‥‥‥‥‥‥ */
/* ▼New!サイン部分 */
/* ‥‥‥‥‥‥‥‥ */
.newsign {
	display: inline-block;
	/* インラインブロック化 */
	color: #f55;
	/* 文字色 */
	font-size: 0.8em;
	/* 文字サイズ */
	margin-right: 0.35em;
	/* 外側下の余白量 */
}

/* ---------------- */
/* ▼投稿本文カラム */
/* ---------------- */
.onelogbody {
	display: table-cell;
	/* 投稿情報と投稿本文とで2段組 */
	vertical-align: top;
	/* 上に寄せる */
}

/* …………… */
/* ▼投稿本文 */
/* …………… */
.comment {
	line-height: 1.9;
	/* 行の高さ */
	min-height: 4em;
	/* 最低限確保する高さ */
}

/* ‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥ */
/* ▼本文内に含まれるハッシュタグリンク */
/* ‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥ */
.comment .taglink {
	display: inline-block;
	/* インラインブロック化 */
	margin: 0 3px;
	/* 外側の余白量 */
	text-decoration: none;
	/* 下線を消す */
	word-break: break-all;
	/* 自動リンクのはみ出しを防ぐ */
}

/* ▼ハッシュタグリンクにマウスが載ったとき */
.comment .taglink:hover {
	color: blue;
	/* 文字色 */
	border-color: white;
	/* 枠線の色 */
	text-decoration: underline;
	/* 下線を引く */
}

/* ‥‥‥‥‥‥‥‥‥‥‥‥‥‥ */
/* ▼続きを読むリンク（ボタン） */
/* ※注：「続きを読む」機能は、JavaScriptが無効な閲覧環境では機能せず、その場合はボタンも表示されません。 */
/* ‥‥‥‥‥‥‥‥‥‥‥‥‥‥ */
/* ▽ボタン枠の装飾(共通) */
.readmorebutton {
	display: inline-block;
	/* インラインブロック化 */
	padding: 1px 0.5em;
	/* 内側の余白 */
	margin: 0 1px;
	/* 外側の余白 */
	border: 1px solid #bbb;
	/* 枠線の装飾 */
	border-radius: 0.5em;
	/* 枠線の角丸 */
}

/* ▽ボタン表面の装飾(共通) */
.readmorebutton:link,
.readmorebutton:visited {
	background-color: #eee;
	/* 背景色(グラデーション非対応の環境のみ) */
	background-image: linear-gradient(0deg, #ccc, #ddd 55%, white);
	/* 背景グラデーション */
	color: darkblue;
	/* 文字色 */
	text-decoration: none;
	/* リンク装飾を消す */
}

/* ▽ボタンにマウスが載った際の装飾(共通) */
.readmorebutton:hover {
	background-image: none;
	/* グラデーションなし */
	background-color: #00cccc;
	/* 背景色 */
	color: white;
	/* 文字色 */
	text-decoration: underline;
	/* 下線を加える */
}

/* ▽開く（続きを読む）ボタン専用の装飾 */
.readmorebutton.readmoreopen {
	font-size: 0.95em;
	/* 文字サイズ */
}

/* ▽閉じる（畳む）ボタン専用の装飾 */
.readmorebutton.readmoreclose {
	font-size: 0.75em;
	/* 文字サイズ */
}

/* ……………………………………………… */
/* ▼投稿日時やカテゴリ名などの情報表示 */
/* ……………………………………………… */
.oneloginfo {
	margin: 0.75em 0 0 0;
	/* 外側の余白量 */
	font-size: 11px;
	/* 文字サイズ */
	text-align: right;
	/* 右寄せ */
}

/* ‥‥‥‥‥‥‥ */
/* ▼投稿ユーザID */
/* ‥‥‥‥‥‥‥ */
.postuserid {
	margin: 0 0.3em;
	/* 外側の余白量 */
}

/* ▽ユーザIDのリンク */
.postuserid a {
	text-decoration: none;
	/* 下線を消す */
	color: inherit;
	/* 文字色(継承) */
}

/* ▽ユーザIDのリンクにマウスが載ったとき */
.postuserid a:hover {
	text-decoration: underline;
	/* 下線を引く */
}

/* ‥‥‥‥‥‥‥‥‥ */
/* ▼投稿日時のリンク */
/* ‥‥‥‥‥‥‥‥‥ */
.postdate a {
	display: inline-block;
	/* インラインブロック化 */
	padding: 0 0.25em;
	/* 内側の余白量 */
	text-decoration: none;
	/* 下線を消す */
}

/* ▽投稿日時リンクにマウスが載ったとき */
.postdate a:hover {
	text-decoration: underline;
	/* 下線を引く */
}

/* ‥‥‥‥‥‥ */
/* ▼カテゴリ名 */
/* ‥‥‥‥‥‥ */
/* ▽カテゴリリンク1つ */
.categorylink {
	display: inline-block;
	text-decoration: none;
	/* リンクの下線を消す */
}

/* ▽カテゴリリンクにマウスが載ったとき */
.categorylink:hover {
	text-decoration: underline;
	/* 下線を表示 */
}

/* ▽カテゴリ間のセパレータ */
.catseparator {
	display: inline-block;
	margin: 0 1px;
	/* 左右に1pxの余白 */
	color: gray;
	/* 文字色 */
}

/* ▽カテゴリアイコン */
.categoryicon img {
	height: 1.2em;
	width: auto;
	vertical-align: text-top;
	margin: 0 1px;
}

/* ‥‥‥‥‥‥ */
/* ▼編集リンク */
/* ‥‥‥‥‥‥ */
.editlink a {
	display: inline-block;
	/* インラインブロック化 */
	font-size: 0.82em;
	/* 文字サイズ */
	color: black;
	/* 文字色 */
	text-decoration: none;
	/* 下線を消す */
	background-color: #eee;
	/* 背景色 */
	border: 1px solid #ccc;
	/* 枠線 */
	border-radius: 0.5em;
	/* 枠の角丸 */
	padding: 0 0.5em;
	/* 内側の余白量 */
}

/* ▽編集リンクにマウスが載ったとき */
.editlink a:hover {
	color: white;
	/* 文字色 */
	background-color: #08f;
	/* 背景色 */
	border-color: #08f;
	/* 枠線の色 */
}

/* ------------------------------ */
/* ▼画面幅が狭い場合の上書き装飾 */
/* ------------------------------ */
@media all and (max-width: 480px) {

	/* ▼投稿情報カラム */
	.onelogside {
		width: 64px;
		/* 横幅 */
	}

	/* ▼投稿本文 */
	.comment {
		margin-left: 0.3em;
		/* 外側左の余白量 */
	}
}


/* ============================================================ */
/* ■鍵付き(パスワード保護)投稿に表示される鍵入力フォームの装飾 */
/* ============================================================ */
.passkeyform {
	display: inline-block;
	margin: 0;
	padding: 0.6em;
	background-color: #efe;
	border: 1px solid #cec;
	border-radius: 0.25em;
}

/* ▼鍵違いエラーの表示 */
.passkeyerror {
	display: block;
	color: white;
	background-color: crimson;
	font-weight: bold;
	line-height: 1;
	margin: 0 0 0.5em 0;
	padding: 0.33em 0.25em;
}

/* ▼入力フォーム枠 */
.passkeybox {
	display: block;
}

/* ▼入力欄前のガイド文 */
.passkeyguide {
	margin-right: 0.1em;
}

/* ▼鍵入力欄 */
.passkeyinput {
	width: 10em;
	margin: 0 0.25em 3px 0;
}


/* ========================== */
/* ■ページナビゲーション領域 */
/* ========================== */
.pagenavi {
	margin: 2.5em 0px;
	/* 外側の余白 */
	padding: 0.5em 0px;
	/* 内側の余白 */
	text-align: center;
	/* 中央寄せ */
	border-width: 3px 0px;
	/* 枠線の太さ */
	text-align: center;
	/* センタリング */
}

/* ------------------------------------ */
/* ▼ページ前後移動リンク群ボックス全体 */
/* ------------------------------------ */
.pagelinks {
	margin: 0.15em;
	/* 外側の余白 */
}

/* ▼ページ移動リンクの文字 */
.pagelinks a {
	font-weight: bold;
	/* 太字 */
}

/* -------------------------------- */
/* ▼ページ番号リンク群ボックス全体 */
/* -------------------------------- */
p.pagenums {
	margin: 0.5em;
	/* 外側の余白 */
}

/* ▼ページ番号リンクの数字 */
.pagenums a.pagenumlink {
	margin: 0px 2px 0px 2px;
	/* 外側の余白 */
	padding: 0.2em 0.5em;
	/* 内側の余白 */
	font-size: 1em;
	/* 文字サイズ */
	font-weight: bold;
	/* 太字 */
	text-decoration: none;
}

/* ▽現在のページ番号の装飾 */
a.pagenumhere {
	text-decoration: none;
	/* リンク装飾を消す */
	background-color: #da4666;
	/* 背景色 */
	color: white;
	/* 文字色 */
	border-radius: 4px;
	/* 角丸 */
}

/* ▽ページ番号リンクにマウスが載った際の装飾 */
a.pagenumlink:hover {
	opacity: .65;
}

/* ------------------------------------ */
/* ▼限定解除リンク(＝HOMEに戻るリンク) */
/* ------------------------------------ */
.pagehome {
	margin: 0.15em;
	/* 外側の余白 */
	font-weight: bold;
	/* 太字 */
}


/* ========== */
/* ■サブ領域 */
/* ========== */
.subarea {
	width: 170px;
	flex-shrink: 0;
	font-size: 14px;
	margin-top: 16px;
}

@media all and (max-width: 769px) {
	.subarea {
		width: 100%;
	}
}

/* ▼見出し */
.searcharea .cornertitle {
	font-weight: bold;
	margin: 0;
	color: #36c;
	text-shadow: 1px 1px 1px white;
}

/* ▽検索フォーム */
.searchbox {
	margin: 0;
	/* 外側の余白量 */
}

/* 検索語(テキスト)入力欄 */
.queryinput {
	border: 2px solid #8a8;
	border-radius: 0.5em;
	font-size: 1em;
	padding: 0.25em 0.5em;
	max-width: calc(25vw - 9em);
	/* 横幅最大値 */
	min-width: 150px;
	/* 横幅最小値 */
}

/* 検索(送信)ボタン */
.searchbox .submitbutton {
	background-color: green;
	border: 1px solid green;
	font-size: 1em;
	padding: 0.25em 0.67em;
	border-radius: 1em;
	font-weight: bold;
	color: white;
	display: inline-block;
	margin: 0 0 0 3px;
}

.searchbox .submitbutton:hover {
	background-color: #0c0;
	color: white;
}

/* ▽検索対象を限定するチェックボックス */
.searchtarget {
	margin: 0;
	font-size: 0.9em;
	line-height: 1.3;
}

/* ▽検索フォーム形式の切り替えリンク */
.siwtchsearchbox {
	font-size: 0.8em;
}

/* ▽複合検索フォーム */
#complexsearch {
	display: none;
	/* 複合検索窓は、最初は非表示にしておく */
}

/* 検索オプションリスト */
.searchoptions {
	font-size: 0.9em;
	margin: 0.75em 0 1em 1em;
	padding: 0 0 0 0.5em;
}

/* 項目名 */
.solabel {
	display: inline-block;
	min-width: 5em;
}

/* セレクトボックス */
.searchoptions select {
	max-width: 175px;
}

/* ------------------------ */
/* ▼新着画像一覧リスト区画 */
/* ------------------------ */
.imagelistarea {
	margin: 0 0 1em 0;
	/* 外側の余白量 */
	padding: 0 0 1em 0;
	/* 内側の余白量 */
}

/* ▼見出し */
.imagelistarea .cornertitle {
	font-weight: bold;
	/* 太字 */
}

/* ………………………………………… */
/* ▼新着画像リスト内の各画像の装飾 */
/* ここで画像の縦横サイズを制限しておかないと、原寸で表示されてしまいますので注意して下さい！ */
/* ………………………………………… */
.imagelistbox {
	margin: 0;
	/* 外側の余白量 */
	text-align: center;
	/* センタリング */
}

/* ▽画像リストの1項目枠 */
.imagelistitem {
	display: inline-block;
	width: 30%;
	/* 横方向に少なくとも3つは並べたい(※後のmax-widthの影響で4つ以上並ぶこともある) */
	max-width: 100px;
	/* 横幅最大値 */
	max-height: 100px;
	/* 高さ最大値 */
	margin: 1%;
	/* 周囲の余白量 */
	vertical-align: middle;
	/* 枠の下部に余計な空白ができるのを防ぐ */
	overflow: hidden;
	/* 画像がぼかされている場合に、ぼかしが枠からはみ出ないようにする */
}

/* ▽画像リストの1項目内の画像そのもの */
.imagelistbox .oneimage {
	width: 100%;
	height: auto;
	/* 画像の高さは自動調整 */
	aspect-ratio: 1/1;
	/* 画像を正方形にする */
	object-fit: cover;
	/* 縦横比が合わなければトリミング */
	vertical-align: middle;
	/* 画像下部に余計な空白ができるのを防ぐ */
}

/* ▼総数・総サイズの情報 */
.imagesinfo {
	margin: 0.25em 0;
	/* 外側の余白量(上下→左右) */
	text-align: right;
	/* 右寄せ */
}

.totalimgfiles {
	font-size: 0.9em;
	/* 文字サイズ */
}

.totalimgsizes {
	font-size: 0.8em;
	/* 文字サイズ */
}


/* ------------------------------ */
/* ▼日付一覧リスト・日付検索区画 */
/* ------------------------------ */
.datelistarea {
	margin: 0 0 1em 0;
	/* 外側の余白量 */
	padding: 0 0 1em 0;
	/* 内側の余白量 */
	border-bottom: 1px dashed green;
	/* 下線 */
}

/* ▼見出し */
.datelistarea .cornertitle {
	margin: 0;
	/* 外側の余白量 */
	font-weight: bold;
	/* 太字 */
	color: #969;
	/* 文字色 */
	text-shadow: 1px 1px 1px white;
	/* 文字の影 */
}

/* …………………………… */
/* ▼日付リンクリスト区画 */
/* …………………………… */
/* ▽日付リスト(年単位) */
.datelimitlist {
	margin: 0.5em 0;
	/* 外側の余白量 */
	padding: 0 0 0 20px;
	/* 内側の余白量 */
	padding: 0.5em 0.5em 0.5em 1.5em;
	/* 内側の余白量 */
	background-color: #efe;
	/* 背景色 */
	border-radius: 0.5em;
	/* 角丸 */
}

/* ▽日付リスト(月単位) */
.datelimitsublist {
	margin: 0;
	/* 外側の余白量 */
	padding: 0 0 0 5px;
	/* 内側の余白量 */
	list-style-type: none;
	/* リストの先頭記号(なし) */
	font-size: 0.9em;
	/* 文字サイズ */
}

/* ――――――――――――――――――――――――― */
/* ▽年表記が単独で存在する場合に、月表示を横に並べる */
/* 縦に並べたい場合は、この区画を削除して下さい。 */
/* ――――――――――――――――――――――――― */
.datelimitlist .datelimitsublist .datelimit-month {
	display: inline-block;
	margin-right: 0.9em;
}

/* ―――――――――――――――――――――――――――――――――――― */
/* ▽年表記が単独で存在する場合に、月リンク内に含まれる年表記を非表示にする */
/* 年表記も表示したい場合は、この区画を削除して下さい。(詳細解説→ https://www.nishishi.com/cgi/tegalog/custom/#customizecss-datelist ) */
/* ―――――――――――――――――――――――――――――――――――― */
.datelimitlist .datelimitsublist .year {
	display: none;
}

/* ▽日付リスト内の該当件数 */
.datelimitlist .num {
	font-size: 0.85em;
	/* 文字サイズ */
	color: #66a;
	/* 文字色 */
	margin-left: 0.3em;
	/* 外側左の余白量 */
}

/* …………………………………… */
/* ▼日付プルダウンメニュー区画 */
/* …………………………………… */
.datelimitbox {
	margin: 0.5em 0;
	/* 外側の余白量 */
	padding: 0.9em 0.6em;
	/* 内側の余白量 */
	background-color: #efe;
	/* 背景色 */
	border-radius: 0.5em;
	/* 角丸 */
}

/* ▽昇順/降順選択ラジオボタン区画 */
.datelimitboxoptions {
	display: block;
	/* ブロック化 */
	font-size: 0.9em;
	/* 文字サイズ */
}

/* ▽ラジオボタンのラベル */
.datelimitboxoptions label {
	display: inline-block;
	/* インラインブロック化 */
	margin-right: 0.5em;
	/* 外側右の余白量 */
}

/* ------------------------ */
/* ▼ハッシュタグリスト区画 */
/* ------------------------ */
/* ▽ハッシュタグリスト */
.hashtaglist {
	list-style-type: none;
	/* リストの先頭記号(なし) */
	line-height: 1.5;
	/* 行の高さ */
}

/* ▽ハッシュタグリストの1項目 */
.hashtaglist li {
	display: inline-block;
	/* インラインブロック化(横に並べる) */
	/* ※ハッシュタグ一覧を横に並べたくない場合は、この行を削除して下さい。 */
}

/* ▽ハッシュタグリスト内の該当件数 */
.hashtaglist .num {
	font-size: 0.9em;
	/* 文字サイズ */
	color: #00a;
	/* 文字色 */
	margin-left: 0.25em;
	/* 外側左の余白量 */
}

/* プルダウンメニュー版ハッシュタグ一覧の装飾 */
.hashtagpull {
	max-width: 200px;
}

/* -------------------- */
/* ▼カテゴリツリー区画 */
/* -------------------- */
/* ▽カテゴリツリー */
.categoryTree ul {
	list-style-type: disc;
	/* 箇条書き記号(何も付けたくなければ none に) */
	line-height: 1.2;
	padding-left: 1.5em;
	/* 行の高さ */
}

/* カテゴリ1項目 */
.categoryTree li {
	margin-top: 0.25em;
	/* 上側の余白量 */
}

/* ………………………………………………………………………………………… */
/* ▼カテゴリツリー内の各要素（アイコン・カテゴリ名・該当件数・概要等） */
/* ………………………………………………………………………………………… */
/* ▽カテゴリアイコン */
.categoryTree .caticon img {
	height: 1.2em;
	/* アイコンの高さを1.2文字分に制限する */
	width: auto;
	/* アイコンの横幅は自動調整する */
	vertical-align: text-top;
	/* アイコンの上端位置をテキストの上端に合わせる */
}

/* 間隔調整：カテゴリアイコンとカテゴリ名が並ぶ際には間隔を空ける */
.categoryTree .caticon+.cattext,
.categoryTree .cattext+.caticon {
	margin-left: 3px;
}

/* ▽該当件数 */
.categoryTree .num {
	display: inline-block;
	margin-left: 0.4em;
	font-size: 0.9em;
	color: #aaa;
}

/* ▽カテゴリ概要文 */
.categoryTree .catdescription {
	font-size: smaller;
	color: #555;
}

/* プルダウンメニュー版カテゴリ一覧の装飾 */
.catpull {
	max-width: 200px;
}

/* -------------------- */
/* ▼新着投稿リスト区画 */
/* -------------------- */
/* ▽新着投稿グリスト */
.latestpostlist {
	line-height: 1.25;
	padding-left: 1.5em;
	/* 行の高さ */
}

/* 各項目 */
.latestpostlist li {
	margin: 0.75em 0;
}

/* タイトルリンク以外の項目 */
.latestpostlist span {
	display: inline-block;
	font-size: 0.8em;
}

.latestpostlist .postdate {
	color: gray;
}

/* 投稿日付 */
.latestpostlist .posttime {
	display: none;
	color: gray;
}

/* 投稿時刻 */
.latestpostlist .username {
	display: none;
	color: #558855;
}

/* 投稿者名 */
.latestpostlist .userid {
	display: none;
	color: #555588;
}

/* 投稿者ID */
.latestpostlist .postid {
	display: none;
	color: gray;
}

/* 投稿番号 */
.latestpostlist .length {
	display: none;
	color: gray;
}

/* 本文文字数 */


/* ▼その他の情報表示 */
.infotitle {
	margin: 1em 0 0 0;
	border-bottom: 1px dotted #ccc;
	font-size: 0.95em;
}

.infobody {
	margin: 0 0 1em 0;
	padding-top: 0.25em;
	text-align: right;
}

/* ========================== */
/* ■ページ最下部(フッタ)領域 */
/* ========================== */
footer {
	width: 100%;
	background-color: #d81b60;
	color: #ffffff;
	margin-top: 80px;
	font-size: 12px;
	text-align: center;
	padding: 16px 16px 24px;
}

/* ▼管理操作リンク群 */
footer .control-links {
	text-align: center;
	/* 中央寄せ */
	margin: 0.5em;
	/* 外側の余白量 */
}

/* ▼戻るリンク */
.backlink {
	text-align: center;
	/* 中央寄せ */
	margin: 0.5em;
	/* 外側の余白量 */
}

/* ▼フッタ内リンクの装飾 */
footer a:link {
	color: white;
}

/* 未訪問 */
footer a:visited {
	color: white;
}

/* 訪問済み */
footer a:hover {
	opacity: .65;
}

/* マウスが乗ったとき */

/* Powered-by表記のデザイン */
.poweredby {
	text-align: center;
}


/* End of file */

.deco-title01 {
	width: 100%;
	position: relative;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	border-bottom: 1px solid #524ea3;
	margin: 0 auto 24px;
	padding-bottom: 8px;
  }
.deco-title02 {
	border-left: 4px solid #524ea3;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 16px;
	padding: 8px 0 8px 16px;
}