@charset "utf-8";

/* スキン「tenran03(つぶやき版)」配布用 */
/* 「てがろぐ標準スキン for Ver 4.1.0以降」を改変したスキンです */

*,*::before,*::after { box-sizing: inherit;}
html { box-sizing: border-box;}
h1,h2,h3,h4,h5,img,p,ul,ol,li { margin: 0; padding: 0;}
img { border: none; max-width: 100%;}

/* -------------------- */
/* カスタム用色変更欄 */
/* -------------------- */
:root {
	--haikei-iro: #e3e3e3; /* 全体背景色 */
	--naiyou-iro: white; /* 記事内背景色(このスキンでは使いません) */
	--koi-iro: #2a2f36; /* 濃いアクセント色 */
	--usu-iro: #f2a1a6; /* 薄いアクセント色 */
	--mozi-iro: #333; /* メイン文字色 */
	--usu-mozi-iro: #9ea7a8; /* ↑よりちょっと薄い文字色 */
	--siro-mozi: #fefefe; /* 濃い背景に乗せる白文字色 */
	--link-iro: #03c; /* リンクの色など */
	--link-hover-iro: #004094; /* リンクにマウス乗せたときの色と強調のマーカー色 */
	--iconfont: "remixicon"; /* アイコンフォントの名前 */
	--titlefont: 'Montserrat','Noto Sans JP',sans-serif; /* タイトルなどのフォントの名前 */
}

/* 全体共通装飾 */
body {
	font-size: 1rem;
	line-height: 1;
    font-family: "Zen Maru Gothic", serif;
	margin: 0;
	padding: 0;
	background: url(https://404whale.noor.jp/wordpress/wp-content/uploads/2025/02/bg_body.jpg);
	color: var(--mozi-iro);
	overflow-wrap: break-word;
}

/* リンクの装飾 */
a { text-decoration: none; color: var(--link-iro); 	transition : .2s; /*0.2秒で変化*/}
a:hover { color: var(--link-hover-iro); transition : .2s; /*0.2秒で変化*/ }

/* リストの装飾(余白調整) */
ul,ol{ margin: 0.3rem 0; padding-left: 1.5rem;}

/* E:強調(Emphasis) */
.decorationE {
	font-style: normal;
	font-weight: bold;
	background: #f7ffa0;
    padding: .2rem .5rem;
}

/* I:斜体(Italic) */
.decorationI {
	font-family: 'Hiragino Kaku Gothic ProN','游ゴシック';
	font-style: italic;		/* 斜体 */
}

/* Q:引用(Quote) */
.decorationQ {
	margin: 1rem;
	padding: 1rem 1.5rem;
	border: 1px solid var(--link-iro);
	border-left-width: 10px;
	display: block;					/* ※Ver 2.2.0以降必須の記述 */
}

.decorationQ::before,.decorationQ::after { content: ''; } /* 標準で付加されてしまう引用符を無効にする */
.decorationQ + br { display: none; } /* 引用直後の改行を無効化する */

/* T:極小文字(Tiny) */
.decorationT { font-size: 0.6rem;}
/* 隠す */
.decorationH {
    display: flex;
}
/* URLが書かれた場合の装飾 */
.url { word-break:break-all;} /* 自動リンクのはみ出しを防ぐ */

/* 埋め込み画像 */
div.imagebox { margin: 0; padding: 0; line-height:1; font-size: 0;} /* 画像の下の謎の空白を消す */

/* 画像ボックス(FIGオプション指定時) */
.embeddedpictbox {
	margin: 0;
	padding: 0;
	display: inline-table;
	border-collapse: collapse;
	border: none;
	vertical-align: top;
}

/* キャプション */
.embeddedpictbox figcaption {
	padding: 0.1rem 0.2rem;
	display: table-caption;
	caption-side: bottom;
	font-size: 0.7rem;
	color: var(--usu-mozi-iro);
	line-height: 1.5;
}

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

/* 画像リンク */
.imagelink {
	display: inline-block;
	line-height: 1; /* 表示形態によっては画像の下に余計な空白が出るのを防ぐ対策 */
/* 		vertical-align: inherit;	同上 */
	vertical-align: top;
	font-size: 0; /*画像下の謎の隙間埋め*/
}
.comment .imagelink {
    margin: 1rem 0;
}
/* 画像そのもの */
.embeddedimage {
	max-width: 100%;	/* 横方向にはみ出ないようにする */
	height: auto;	/* 高さを固定したい場合を除いて、ここは auto のままにするのがお勧め */
}

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

img.nsfw {
	filter: blur(30px) brightness(0.5);	/* ぼかして暗くする */
	width: 200px;
	aspect-ratio: 1;
	object-fit: cover;
}

/* NSFWマークを重ねる */
.imagelink.nsfw::after{
	content:"\EA20";
	font-family: var(--iconfont);
	font-size: 50px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/* 埋め込み動画 */
.embeddedmovie{
	display: inline-block;
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 500px;
	height: auto;
}

/* 埋め込みTweet(ツイートが埋め込まれる処理「前」用の装飾) */
blockquote.twitter-tweet {
	background-color: #f8f8f8;
	border: 1px dashed #ddd;
	border-radius: 9px;
	margin: 0.3rem 0;
	padding: 1rem;
	font-size: 0.95rem;
	color: #999;
	text-shadow: 1px 1px 1px #fff;
}

/* 埋め込みツイートの横幅を強制的に制限 */
div.twitter-tweet { max-width: 350px !important;}

/* 検索語のハイライト */
.searchword {
	font-weight: bold;
	text-decoration: underline 2px double var(--link-hover-iro);
}

/* メイン表示部分 */
.mainarea { width: 100%; overflow: hidden;}

/* -----↓画面幅768px以上のとき2カラム表示↓----- */
@media only screen and (min-width: 768px) {
.bodyarea {
	margin: 0 auto;
	padding: 0;
	width: min(96%,1200px);
	display: flex;
}

.menuarea {
	width:300px;
	flex-shrink: 0; /*画面幅狭くなっても縮めない*/
	height: fit-content;
	order: 1;/* メニューを右に */
	position: sticky;/* メニュー固定 */
	top: 0;
}
nav.menu { padding: 0 0.5rem 1rem;}
.mainarea {
	padding: 4rem 1.5rem 1rem;
	order: 0;/* メインエリアを左に */
}

.header { margin: 1rem auto 1rem;}
.menuarea ul { margin: 0; padding: 0; list-style: none;}

}
/* -----↑画面幅768px以上のとき ここまで↑----- */

#drawer { display: none;}/* ドロワーメニューのチェックボックス消しとく */

/* ----―↓画面幅767px以下のとき1カラム表示↓----- */
@media only screen and (max-width: 767px) {
.bodyarea {
	width: 100%;
	margin: 0;
	padding: 0;
}

/* 三本線ボタン */
label.open {
	position: fixed;
	cursor: pointer;
	z-index: 102;
	top: 0;
	right: 0;
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	color: white;
	transition: transform .2s;
	mix-blend-mode: difference;
}
label.open::before {
	content: '\EF3E';
	font-family: var(--iconfont);
	font-size: 30px;
}

/* 背景の暗い部分 */
label.close {
	position: fixed;
	cursor: pointer;
	z-index: 101;
	inset: 0;
	pointer-events: none;
	transition: background-color .2s;
}

/* 閉じるときのバツボタン */
#drawer:checked + label.open {
	transition: transform .2s;
}
#drawer:checked + label.open::before { content: '\EB99';}

#drawer:checked ~ label.close {
	pointer-events: auto;
}

/* ドロワーのメニュー部分 */
nav.menu {
	padding: 5rem;
	z-index: 101;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 100%;
	height: 100dvh;
		height: 100svh;
	margin: 0;
	background: white;
	 -webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	transform: translateX(100%);
	transition: transform .2s;
}
.menubox{
	position: relative;
	display: block;
	text-align: center;
	justify-content: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}

.menu li {
	text-align: cente;
	display: block;
	text-decoration: inherit;
}
nav.menu li a {
    color: var(--koi-iro);
    font-family:var(--titlefont);
    letter-spacing: 0.1rem;
    font-weight: 400;
}
nav.menu li a:hover{
    filter: blur(3px);
}

#drawer:checked ~ .menu { transform: none;}

.header { margin: 0;}
.mainarea { padding: 1rem;}
.poweredby { margin-right: 2rem;}

.cattitle {
 font-size: 1.5rem;
  font-family:var(--titlefont);
   letter-spacing: 0.05rem;
	font-weight: 500;
	 color: var(--koi-iro);
	  border-radius: 4px;
	   padding: 0.2rem;}
}
/* -----↑画面幅767px以下のときここまで↑----- */

/* メニュー共通装飾 */
.menuarea { text-align: center; font-family: var(--titlefont);}
nav.menu {line-height: 1.5;}
nav.menu li { padding: 0.3rem; font-weight: 500;  font-family:var(--titlefont);}
nav.menu li a { color: var(--koi-iro);  font-weight: 400;  font-family:var(--titlefont);}
nav.menu .num { color: #666666; font-size: 0.8rem; margin-left: 0.1rem;}
nav.menu ,.cat_menu { margin-bottom: 1rem;}
.cattitle { font-family:var(--titlefont);
	font-weight: 500; font-size: 1.5rem ; color:var(--koi-iro); padding: 0.2rem; margin: 20px 0;}

/* 日付別リスト */
.dateboxarea { margin-bottom: 1.5rem;}
.datelimitbox select {
	border:1px solid var(--usu-mozi-iro);
	padding: 0.3rem;
	background: transparent;
	color: var(--mozi-iro);
	box-shadow: none;
	cursor: pointer;
}

.datelimitbox .submitbutton {
	margin-left: 0.2rem;
	padding: 0.3rem 0.5rem;
	border: 0;
	background-color: var(--koi-iro);
	color: var(--siro-mozi);
	cursor: pointer;
		transition: transform .2s;
	&:hover{ background-color: var(--link-hover-iro);
			 transition: transform .2s;}
}
.datelimitboxoptions { display: none;}

/* HOMEへ戻るリンクのテキストを消してアイコンを挿入 */
.menu .homelink { font-family:var(--titlefont);}
.menu .homelink a{color: var(--koi-iro);}
.menu .homelink a:hover;{filter: blur(3px);}
.menu .homelink a::before{
	content:'\EE1C';
	display: inline-block;
	font-family: var(--iconfont);
	font-weight: normal;
	color: var(--koi-iro);
}

/* ヘッダー */
.header {
	padding: 1.3rem 1rem 1.3rem;
	background-color: var(--koi-iro);
	color: var(--siro-mozi);
	font-family: var(--titlefont);
	text-align: center;
	line-height: 1.3;
	outline: 2px solid var(--siro-mozi);
	outline-offset: -6px;
}

/* ヘッダー画像 */
.headimg {
	margin: 0 0 0.5rem;
	width: 200px;
	height: auto;
}

/* メインタイトル */
.maintitle { font-size: 1.6rem; font-weight: 500; font-family:var(--titlefont);}
.maintitlelink { color: var(--siro-mozi);}

/* サブタイトルと概要文 */
.subtitle,.mainguide {
	font-size: 0.8rem;
	margin-top: 0.2rem;
	&:empty { display: none;}
}

/* メインタイトル、サブタイトル、概要文を半角スペースやピリオド等で改行できるようにする */
.maintitle,.subtitle,.mainguide {
	overflow-wrap: break-word;/*↓2行 日本語改行タイミングの調整 */
	word-break: keep-all;
}

/* QUICKPOST装飾 */
.postform { border: 1px solid var(--usu-mozi-iro); margin: 0 auto 1.5rem; padding: 1rem 0;}
.postform p { margin: 0;}

/* 本文入力欄 */
textarea.tegalogpost {
	border: 1px var(--usu-mozi-iro) solid;	/* 枠線 */
	background-color: #fefefe;	/* 背景色 */
	color: #242424;/* 文字色 */
	padding: 0.5rem;				/* 内側の余白量 */
	box-sizing: border-box;		/* サイズ解釈方法 */
	width: 100%;				/* 横幅 */
	height: 6rem;				/* 高さ */
	overflow-wrap: break-word;	/* 折り返し方法 */
	overflow: auto;				/* はみ出した場合の処理 */
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

/* チェックボックス群の行間 */
.line-control { line-height: 1.5;}

/* 投稿ボタン */
.postbutton {
	display: inline-block;		/* インラインブロック化 */
	background: var(--koi-iro);
	color: var(--siro-mozi);
	font-size: 0.9rem;
	text-decoration: none;
	padding: 0.3rem 1rem;
	border: none;
	border-radius: 0.2rem;	
	cursor: pointer;
	transition: transform .2s;
}

/* 投稿ボタンにマウスが載ったとき */
.postbutton:hover { background-color: var(--usu-iro);	transition: transform .2s; }

/* 文字装飾ボタン群 */
/* 掲載領域全体 */ .decoBtns { display: inline-block; margin-top: 5px; max-width: 300px;}
/* 全ボタン装飾 */ 
.decoBtns input {
	min-width: 32px;
	max-width: 300px;
	min-height: 28px;
	color: #242424;
	margin:1px;
	background-color: #fefefe;
	border: 1px solid var(--usu-mozi-iro);
	cursor: pointer;
	border-radius: 0.2rem;
	font-size: 0.8rem;
	vertical-align: middle;
 transition : .2s; /*0.2秒で変化*/
}
/* マウス載る際 */ .decoBtns input:hover{ border: 1px dotted var(--usu-mozi-iro);  transition : .2s; /*0.2秒で変化*/}
/* 太字  :B */ .decoBtnB { font-weight: bold; }
/* 取消線:D */ .decoBtnD { text-decoration: line-through;}
/* 強調  :E */ .decoBtnE { font-weight: bold; background: #ffe102; }
/* 斜体  :I */ .decoBtnI { font-style: italic; font-family: 'Hiragino Kaku Gothic ProN','游ゴシック';}
/* 極小  :T */ .decoBtnT { font-size: 11px !important; }
/* 下線  :U */ .decoBtnU { text-decoration: underline;}
/* 文字色:C */ .decoBtnC { color: red !important; }
/* 背景色:M */ .decoBtnM { background-color: greenyellow !important; }

/* カテゴリ選択チェックボックス群 */
.catChecks { font-size:0.9rem; padding-top: 0.5rem; }
.catChecks label { display:inline-block; cursor:pointer; margin:0 0.75rem 0 0; }
.catChecks label:hover { text-decoration:underline; }
.catChecks input { min-width:0; min-height:0; margin-right:0.2rem; }

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

/*プルダウンの装飾*/
.postarea select {
	border:1px solid var(--usu-mozi-iro);
	border-radius: 0.2rem;
	padding: 0.3rem;
	background: #fefefe;
	color: #242424;
	box-shadow: none;
	cursor: pointer;
}

/*検索窓エリア*/
.searchboxarea { text-align: right; margin-bottom: 1.5rem;}
.searchinputs{
	border: 1px solid var(--usu-mozi-iro);
	padding: 0.3rem;
	overflow: hidden;
}
.queryinput {
	width: 180px;
	border: 0px;
	outline: none;
	font-size: 1rem;
	vertical-align: middle;
	background-color: transparent;
	color: var(--mozi-iro);
}

/* 検索アイコン */
.searchinputs::before {
	content:"\F0D1";
	font-family: var(--iconfont);
	font-size: 20px;
	vertical-align: middle;
}

.searchbox .submitbutton {
	margin: 0 0 0 0.3rem;
	padding: 0.2rem 0.4rem;
	border: 0;
	background-color: var(--koi-iro);
	color: var(--siro-mozi);
	cursor: pointer;
		transition: transform .2s;
	&:hover { background-color: var(--usu-iro);	transition: transform .2s; }
}

/* 検索オプション行 */
.searchtarget.limitedsearch {
	font-size: 0.8rem;
	line-height: 1.3;
	color: var(--usu-mozi-iro);
	margin-top: 0.3rem;
}

/* 表示対象の限定時などの「限定条件」表示行 */
.situation {
    font-size: 3rem;
    height: 4rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    font-family: var(--titlefont);
		line-height: 1.3;
	  margin-bottom: .8em;
}
.situation:empty { display: none; }
.situation-postno { display: none;}
.situation-tagname::before {
  content: "#";
  margin-right: 0.25em;
}
.situation .situation-hits,
.situation .situation-page {
  color: var(--usu-mozi-iro);
  font-size: 30%;
  letter-spacing: 0.1rem;
}
.situation > .situation-tagname-cover,
.situation > .situation-nocatname-cover,
.situation > .situation-onecatname-cover
 {
  display: block;
  margin-bottom: -.7em;
}
.situation > .situation-hits,
.situation > .situation-page {
	display: inline-flex;
  align-items: center;
}
.situation-page::before {
  content: " ／ ";
  opacity: .5;
  margin: 0 .25em;
}

/* 日付境界バー */
.datetitle,.fixedlabel {
	display: inline-block;
	margin: 0 0.5rem 0.3rem 0.3rem;
	font-size: 1rem;
	font-family: var(--titlefont);
	font-weight: 500;
	letter-spacing: 0.2rem;
}

/* 時系列順とファイル出力リンク(文字を消してアイコンを入れる) */
.datereverse,.dateexport {
	font-size: 0;
&::before {
	font-family: var(--iconfont);
	font-size: 20px;
	margin-right: 0.5rem;
	display: inline-block;}
}
.datereverse::before { content: "\EE16";}/* 時系列順アイコン */
.dateexport::before { content: "\ED5F";}/* ファイル出力アイコン */

/* 投稿ボックス(一発言)ごとの表示 */
.onelogbox {
	width: 100%;
	margin: 0 auto 2rem;
	padding: 1rem 1.3rem 1.3rem;
	border: 1px solid var(--usu-mozi-iro);
	border-radius: 8px;
    background-color:var(--naiyou-iro);
}

.onelogbox.memo{
  background-image:
     linear-gradient(#e1eef5 1px, transparent 1px),
     linear-gradient(to right, #e1eef5 1px, #fff 1px);
  background-size: 1.3rem 1.3rem;
	width: 95%;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 5px 5px -2px rgba(0, 0, 0, 0.3);
}

.comment { line-height: 1.65;}/* 投稿本文の行間 */

/* 投稿のタイトル */
.onelogtitle {
	transform: translate(-2rem);
	width: fit-content;
	background-color: var(--koi-iro);
	color: var(--siro-mozi);
	font-size: 1.05rem;
	font-family: var(--titlefont);
	font-weight: 500;
	letter-spacing: 0.2rem;
	line-height: 1.3;
	margin-bottom: 1rem;
	padding: 0.4rem 1.5rem;
}

/* 1記事内の投稿日時と編集リンク */
.oneloginfo {
	display: flex;
	flex: auto;
	justify-content: space-between;
	margin: auto;
	font-size: 0.8rem;
	line-height: 1.3;
}

/* 1記事内のカテゴリーの装飾 */
.onelogcats { margin-right: 0.2rem; text-align: right;}

.postdate { letter-spacing: 0.1rem;}
.datelink { font-family: var(--titlefont); font-weight: 500; color: var(--usu-mozi-iro); display: inline-block;}
.editlink { font-size: 20px; color: var(--mozi-iro);}
 
/* カテゴリ間のセパレータ */
.catseparator {
	display: inline-block;
	margin: 0 1px;			/* 左右に1pxの余白 */
	color: var(--usu-mozi-iro);			/* 文字色 */
}

/* ユーティリティリンク */
.utilitylinks { margin-bottom: 2rem; line-height: 1.65;}

/* 先頭固定の装飾 */
.onelogbox.logstatus-fixed {
	border: 2px solid var(--koi-iro);
	outline: 1px solid var(--koi-iro);
	outline-offset: -5px;
}
.onelogbox.logstatus-fixed .postdate::before {
	content:"\F036";
	font-family: "remixicon";
	font-size: 20px;
	color: var(--koi-iro);
	vertical-align: bottom;
	margin-right: 0.2rem;
	vertical-align: sub;
}

/*続きを読むボタンと鍵フォーム送信ボタン*/
a.readmorebutton,.passkeysubmit {
    display: block;
    width: fit-content;
    margin: 0.5rem auto;
    border: 0;
    text-decoration: none;
    color: var(--siro-mozi);
    background-color: var(--koi-iro);
    padding: 0.1rem 1rem;
	cursor: pointer;
	&:hover { background-color: var(--usu-iro);	transition: transform .2s;}
}
.readmorearea {
    margin: 1rem;
}

/* 鍵付き(パスワード保護)投稿に表示される鍵入力フォームの装飾 */
.passkeyform {
	display: block;
	margin: 0;
	padding: 0.6rem;
}

/* 鍵違いエラーの表示 */
.passkeyerror {
	display: block;
	color: var(--siro-mozi);
	background-color: var(--usu-iro);
	font-weight: bold;
	line-height: 1.3;
	margin: 0 0 0.8rem 0;
	padding: 0.3rem 0.8rem;
}

.passkeybox { display: block; }/* 入力フォーム枠 */
.passkeyguide { display: block; margin-bottom: 0.5rem; } /* 入力欄前のガイド文 */
.passkeyinput { /* 鍵入力欄 */
	border: 1px solid var(--usu-mozi-iro);
	width: 10rem;
	padding: 0.2rem;
	font-size: 1rem;
	background-color: #fefefe;
	color: #242424;
	vertical-align: middle;
}

/* ページナビゲーション領域 */
.pagenavi { text-align: center; margin-bottom: 3rem;}
.pagenavi p { margin-bottom: 1.5rem; font-weight: 600;}

/* ページ番号リンクの数字 */
a.pagenumlink {
	display: inline-block;
	width: 25px;
	height: 25px;
	text-decoration: none;
	line-height: 25px;
	margin-top: 5px;
}

/* 現在のページ番号とマウスオーバー時の装飾 */

.pagehome {
    width: fit-content;
    margin: 3rem auto;
}
.pagehome a {
    background: #f2a1a6;
    border: 2px solid var(--koi-iro);
    padding: .5rem 1.5rem;
}

a.pagenumlink {
    display: inline-block;
    width: 35px;
    height: 35px;
    text-decoration: none;
    line-height: 30px;
    margin-top: 5px;
    border: 2px solid;
    border-radius: 50px;
    color: var(--mozi-iro);
}
a.pagenumhere {
  color: var(--siro-mozi);
   background-color: var(--koi-iro);
   transition : .2s; /*0.2秒で変化*/ }
.pagenumlink:hover {
   color: var(--siro-mozi);
   background-color: var(--link-hover-iro);
   transition : .2s; /*0.2秒で変化*/ }

/* ハッシュタグエリア */
.hashtagarea {
	margin: 2rem 0;
	padding: 0 1.3rem;
	font-family: var(--titlefont);
	font-weight: 500;
}
.tagareatitle { font-size: 1rem; margin-bottom: 0.5rem; }
.hashtagarea ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1.5;
}
.hashtagarea li { display: inline-block; margin-right: 0.3rem;}
.hashtagarea .num {
	color: var(--usu-mozi-iro);
	font-size: 0.8rem;
	margin-left: 0.1rem;
}

/* ハッシュタグの先頭にシャープ付ける */
ul.hashtaglist .taglink::before{ content: '\23'; margin-right: .1rem}

/* 前のページに戻るボタン */
.back_btn { margin-top: 1.5rem;}
a.back_btnlink {
	background-color: var(--koi-iro);
	color: var(--siro-mozi);
	font-size: 0.8rem;
	display: inline-block;
	padding: 0 15px 0 25px;
	height: 20px;
	text-decoration: none;
	line-height: 20px;
	clip-path: polygon(0 100%, 15px 0, 100% 0, 100% 100%);
 transition : .2s; /*0.2秒で変化*/
	&:hover { background-color: var(--usu-iro);  transition : .2s; /*0.2秒で変化*/}
}

/* フッター */
footer { line-height: 1.3;}
.kanri i { font-size: 20px; color: #003356;}
footer .kanri { margin-right: 0.8rem; vertical-align: sub;}
.poweredby { font-size: 0.8rem; text-align: right;}

/* 上に戻るボタン ドロワーの下にすること */
a.ue_btn {
    position: fixed;
    bottom: 40px;
    height: 0px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: var(--usu-mozi-iro);
    padding: 0 0 0 35px;
    border-top: solid 2px;
}
a.ue_btn::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 2px;
    transform: rotate(35deg);
    transform-origin: left top;
}
html{ scroll-behavior: smooth;}

.cattree, .hashtaglist {
    text-align: center;
    font-size:1rem;
}
.cattitle a{color: var(--koi-iro);}

/* ================================================================ */
/* てがろぐ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.9rem;              /* 文字サイズ */
		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化 */
			transition: .2s;
		}
		/* (マウスが載ったとき) */
		.cardlinkbox:hover {
			background-color: var(--usu-iro); /* 背景色 */
			border-color: #004094;        /* 枠線色 */
			transition: .2s;
		}
			/* ▽リンクカード内の画像枠 (※読み込まれたog:imageは、この枠に《背景画像として》描画されます) */
			.cardlinkimage {
				background-image: linear-gradient(-30deg, #004094, #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 { 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; }        /* 太字 */
				.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;           /* 文字サイズ(小さめ) */
				}

 /* -------------- */
  /* ▼埋め込み動画 */
  /* -------------- */
  /* ▽[VIDEO:キャプション]URL記法で、キャプション付きで掲載される場合の外側要素 */
  figure.embeddedvideo {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
  }
    /* ▽[VIDEO:キャプション]URL記法で、キャプション付きで掲載される場合のキャプション部分 */
    .videotitle {
      text-align: center;
      background-color: #dcf3dc;
    }

  /* ▽[VIDEO]URL記法（または [VIDEO:キャプション]URL記法）で掲載されるvideo要素部分 */
  video.embeddedvideo {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
  }

  select.hashtagpull{padding: 10px;}

h2.decorationF.deco-title {
    transform: translate(-2rem);
    width: fit-content;
    background-color: var(--koi-iro);
    color: var(--siro-mozi);
    font-size: 1rem;
    font-family: var(--titlefont);
    font-weight: 500;
    letter-spacing: 0.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding: 0.4rem 1.5rem;
    border-radius: 4px;
}


/* ▼ FAB（＋ボタン） */
.fab-post {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  display: block;
  background: var(--link-hover-iro);
  color: #fff;
  font-size: 40px;
  border-radius: 100vmax;
  line-height: 64px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 4000;
}
.fab-post::before { content: "+"; }

/* ▼ チェックボックス非表示 */
#quickpost_toggle { display: none; }

/* ▼ QuickPost モーダル本体（初期：非表示） */
#quickpost {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}

/* ▼ 開いたときだけ表示 */
#quickpost_toggle:checked ~ #quickpost {
  display: block;
}

/* ▼ 背景（閉じる用） */
#close_form_bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 10;
  cursor: pointer;
}

/* ▼ 投稿フォーム本体 */
#quickpost .postarea {
  position: relative;
  z-index: 20;
  width: 100%;
  margin: 40px auto;
  padding: 0 0 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto;

  /* 開くときの柔らかいアニメ */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

#quickpost_toggle:checked ~ #quickpost .postarea {
  opacity: 1;
  transform: translateY(0);
}

/* ▼ 閉じるボタン */
#close_form_btn {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  text-align: center;
  background: #666;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100vmax;
  cursor: pointer;
}
.line-control {
    line-height: 1.5;
    padding: 20px;
}
.Login-Required.onelogbox.logstatus-fixed {
    position: fixed;
    top: 0px;
    z-index: 102;
}

.cat_menu .cattree.depth2 {
    display: none;
}
/* 進捗コーナー */
/* depth2 で croquis と wip 以外を非表示 */
.head_right .cattree.depth2 .catbranch:not(.cat-croquis):not(.cat-wip) {
    display: none;
}

/* croquis と wip は表示 */
.head_right .cattree.depth2 .catbranch.cat-croquis,
.head_right .cattree.depth2 .catbranch.cat-wip {
    display: list-item;
}

/* 親階層(depth1)は残したまま、リンクを消す（任意） */
.head_right .cattree.depth1 > .catbranch > .catlink {
    display: none;
}

ul.cattree {
    list-style: none;
    padding-left: 0;
}
li.catbranch.cat-croquis,
li.catbranch.cat-wip {
    margin: 0.4rem 0 0;
    padding: 0;
}
.head_right .cattree.depth2 {
    padding-left: 0;
}
.head_right .cattree{text-align: left;}
.head_box {
    display: flex;
    width: 100%;
    margin: 1rem 0;
}
.head_left{    flex: 1;
    white-space: nowrap;}
.head_right{    flex: 0;
    white-space: nowrap; margin-right: 1rem;}
.bgwhite {
    background: white;
    padding: 1rem;
    border: 3px solid;
    outline: 3px solid;
    outline-offset: -8px;
}

#work-counters div{font-size: 1rem; margin:0.4rem 0; text-align:center;}
#work-counter div{padding: 0.2rem; letter-spacing: 0.1rem;}

/* フリースペース */
.freespace {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid;
    margin-bottom: 1rem;
}
.fstitle{text-align: center; margin-top: 1rem;}

.progress-title {
  text-align: center;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.progress-row:first-of-type {
  border-top: none;
}

.progress-label {
  flex: 1;
}

.progress-month {
  flex: 0;
    white-space: nowrap;
  font-weight: bold;
}
.progress-month {
  padding-right: 0.4rem;
  margin-right: 0.4rem;
  border-right: 1px solid rgba(0,0,0,0.3);
}
body {
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ▼ 通常状態（tubuyaki 以外） */
.onelogbox .onelogtitle {
  display: block;
}

/* ▼ tubuyaki の時だけ逆転 */
.onelogbox.tubuyaki .onelogtitle {
  display: none;
}
.onelogbox.memo .onelogtitle {
color: var(--koi-iro);
    position: relative;
    background: none;
    border-bottom: 4px solid #e63946;
    padding: 0 10px 0 10px;
    transform: none;
}

.onelog_inner{
  display: flex;
  gap: 15px;
  align-items: start;
	margin-bottom: .5rem;}

.tubuyaki .iconarea{display: none;}
.icon-area img {
border-radius:50%;
}
/* アイコンはデフォルト非表示（通常投稿） */
.onelogbox .iconarea {
  display: none;
}
/* tubuyaki のときだけアイコン表示＆横並び */
.onelogbox.tubuyaki .iconarea {
  display: block;
}
a.categorylink{  color: inherit;}
.datenone{display: none;}


/*----------------------------
scroll ｜ふわっと出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_left {
  opacity: 0;
  transform: translate3d(-30px, 0, 0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
    contain: layout paint;
}
.scroll_left.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.scroll_right {
  display: block;
  width: 100%;
  opacity: 0;
  transform: translate3d(30px, 0, 0);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
  backface-visibility: hidden;
  contain: layout paint;
}

.scroll_right.on {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
