@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */



@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  /* 選択禁止 */
	user-select: none;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  word-break: break-word;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
 /* 保存禁止 */
  pointer-events: none;
}

a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
  padding: 0;
}
ol.list,
ul.list {
  list-style: decimal;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
  margin: 0;
  padding: 0;
}

hr {
  border: none;
  height: 1px;
  background: #f1eded;
  margin: 2em auto;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
p {
  line-height: 1.6em;
}


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

/* -------------------- */
/* カスタム用色変更欄 */
/* -------------------- */
:root{
	--haikei-iro: #f8f8f8; /* 全体背景色 */
	--mozi-iro: #242424; /* 文字色 */
	--usu-mozi-iro: #979797; /* ↑よりちょっと薄い文字色など */
	--siro-mozi: #f5f5f5; /* 濃い背景に乗せる白文字 */
	--koi-iro: #1d1d1d; /* 濃いアクセント色 */
	--link-iro: #2684D7; /* リンクの色 */
	--link-hover-iro: #0067C0; /* リンクにマウス乗せたときの色 */
}


/* ■全体共通装飾 */
body {
	font-size: 0.9rem;
	line-height: 1.5rem;
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
	margin: 0;
	padding: 0;
	background-color: var(--haikei-iro);
	color: var(--mozi-iro);
}

/* リンクの装飾 */
a{ text-decoration: none; color: var(--link-iro); }
a:hover { color: var(--link-hover-iro);}

/* ▽画像ボックス(FIGオプション指定時) */
.embeddedpictbox {
	margin: 0;
	padding: 0;
	display: inline-table;
	border-collapse: collapse;
	border: none;
	vertical-align: top;
}
/* キャプション */
.embeddedpictbox figcaption {
	padding: 2px;
	display: table-caption;	
	caption-side: bottom;
	font-size: 0.7rem;
	color: var(--usu-mozi-iro);
	line-height: 1rem;
}

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

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

/* ▽画像そのもの */
.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);	/* ぼかして暗くする */
	object-fit: cover;
}

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

/* 表示全体エリア */
.bodyarea{
	margin: 0 auto;
	padding: 3rem 1rem 0;
	width: 100%;
	max-width: 1000px;
}

/* メインタイトル */
.maintitle{ font-size: 1.2rem; font-weight: bold; margin-bottom: 2rem;}
.maintitlelink{ color: var(--mozi-iro);}

/* homeと管理ボタン */
.home_btn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 100;
}
.home_btn a {
	display: block;
	text-align: center;
	color: var(--siro-mozi);
	background-color: var(--koi-iro);
	width: 40px;
	height: 40px;
	line-height: 40px;
}
.home_btn a:hover { background-color: var(--link-hover-iro);}

/* HOMEへ戻るリンクのテキストを消してアイコンを挿入 */
.home_btn .homelink a { font-size: 0;}
.home_btn .homelink a::before {
	content:'\e88a';
	font-family: "Material Icons Round";
	font-size: 30px;
}

.home_btn .kanri { margin-top: 0.2rem;}
.home_btn .material-icons-round { font-size: 28px; line-height: 40px;}

/* QUICKPOST装飾 */
.postform { border: 1px solid var(--usu-mozi-iro); margin-bottom: 2rem; padding: 1rem;}
.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: 4.3rem;				/* 高さ */
	overflow-wrap: break-word;	/* 折り返し方法 */
	overflow: auto;				/* はみ出した場合の処理 */
	font-size: 1rem;
	font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic ProN","Hiragino Sans",sans-serif;
	line-height: 1.3rem;
}


/* ▼投稿ボタン */
.postbutton {
	display: inline-block;
	background: var(--koi-iro);
	color: var(--siro-mozi);
	font-size: 0.9rem;
	text-decoration: none;
	padding: 5px 15px;
	border: none;
	cursor: pointer;
}
.postbutton:hover { background-color: var(--link-hover-iro);}

/* 装飾ボタン掲載領域全体 */ .decoBtns { display: inline-block; margin-top: 5px; }
/* 全ボタン装飾 */ 
.decoBtns input {
	min-width: 32px;
	min-height: 28px;
	margin:1px;
	cursor: pointer;
	font-size: 0.8rem;
	border: 1px solid var(--usu-mozi-iro);
	border-radius: 3px;
	vertical-align: middle;
}

/* カテゴリ選択チェックボックス群 */
.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: 3px;
	padding: 5px;
	box-shadow: none;
	cursor: pointer;
}

/* カテゴリー欄 */
.categorylistarea { margin-bottom: 2rem; text-align: center;}
.cattree li { display: inline-block; list-style: none;}
a.catlink {
	display: inline-block;
	color: var(--usu-mozi-iro);
	margin: 0.5rem 0.2rem 0 0.5rem;
	padding: 0 0.3rem;
	border: 1px solid var(--usu-mozi-iro);
}
.cattree .num { font-size: 0.8rem; color: var(--usu-mozi-iro);}
a.catlink:hover { background-color: var(--link-hover-iro); color: var(--siro-mozi);}



/* メイン部分のグリッド表示 */
.maingrid{
	display: grid;
	gap: 0.5rem;
	margin-bottom: 3rem;
}

@media only screen and (min-width: 768px) { .maingrid{ grid-template-columns: repeat(5,1fr);}}
@media only screen and (min-width: 521px) and (max-width: 768px) { .maingrid { grid-template-columns: repeat(4,1fr);}}
@media only screen and (max-width: 520px) { .maingrid { grid-template-columns: repeat(3,1fr);}}

/* 画像そのものの大きさ */
.embeddedimage,.embeddedimage.nsfw,.imagelink {
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
  }

/* 日付境界バー非表示 */
.dateseparator{ display: none;}

/* ページナビゲーション領域 */
.utilitylinks { display: none;}
.pagenavi { text-align: center;}
.pagenavi p { margin-bottom: 1rem;}
.pagenavi p:empty { display: none;}

/* ページ番号リンクの数字 */
a.pagenumlink {
	display: inline-block;
	width: 25px;
	height: 25px;
	color: var(--usu-mozi-iro);
	border: 1px solid var(--usu-mozi-iro);
	text-decoration: none;
	margin-top: 5px;
}

 /* 現在のページ番号とマウスオーバー時の装飾 */	
a.pagenumhere,.pagenumlink:hover {	background-color: var(--link-hover-iro); color: var(--siro-mozi);}

/***線***/
.box5 {
     padding: 0.3em; /*内側の余白*/
   border: solid 2px #666666; /*線の種類・太さ・色*/
   border-radius: 15px; /*丸みを調整*/
   }


.explain {
	position: relative;
	padding: 1.25em;
	border: 2px solid #666666;
	}
.explain_ttl {
	position: absolute;
	padding: 0 0.5em;
	left: 10px;
	top: -10px;
	background: #fff;
	font-weight: bold;
	color: #666666;
	}


/* -----------------------------------
ベース設定
----------------------------------- */
* {
  box-sizing: border-box;
}
*:active {
  outline: none;
}

.page {
  margin-bottom: 0;
}

body {
  background-color: #ffffff;
  color: #0f0f0f;
  font-family: 'YakuHanJPs',"NotoSansJP",YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  padding: 0;
  margin: 0;
  position: relative;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 30px auto;
}
table thead {
  background: #f7f7f7;
}
table tr {
  border-top: 1px solid #ccc;
}
table tr:last-of-type {
  border-bottom: 1px solid #ccc;
}
table tr th, table tr td {
  padding: 8px 0;
}
@media (min-width: 768px) {
  table tr th, table tr td {
    padding: 12px 0;
  }
}

section {
  padding: 20px 0;
}

.material-symbols-outlined {
    font-size: 20px;
    position: relative;
    top: 4px;
  }



/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  line-height: 1.8em;
}

p {
  margin: 0 auto 1em;
  line-height: 2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Noto Sans JP", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  margin: 1.6em auto 1em;
  letter-spacing: 0.15em;
}

h2 {
  font-size: 18px;
  font-family: "Montserrat", "Noto Sans JP", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 600;
  margin: 40px auto 15px;
  letter-spacing: 0.25em;
  position: relative;
  padding-left: 15px;
}
h2:before {
  content: "";
  display: block;
  width: 15px;
  height: 1.5px;
  background: #dcdcdc;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -15px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 20px;
    padding-left: 0px;
  }
  h2:before {
    left: -45px;
    width: 20px;
  }
}

h3 {
  font-size: 17px;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 18px;
  }
}


a {
  color: #0067C0;
}
a:hover {
  color: #ff983f;
}



/* -----------------------------------
Flexbox設定
----------------------------------- */
.body_wrap {
  width: 100%;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-1 {
  width: calc((100% * 1) / 12);
  padding: 0 15px;
}

.col-lg1,
.col-md1,
.col-sm1,
.col-xl1 {
  width: 100%;
  margin-bottom: 40px;
}

.col-2 {
  width: calc((100% * 2) / 12);
  padding: 0 15px;
}

.col-lg2,
.col-md2,
.col-sm2,
.col-xl2 {
  width: 100%;
  margin-bottom: 40px;
}

.col-3 {
  width: calc((100% * 3) / 12);
  padding: 0 15px;
}

.col-lg3,
.col-md3,
.col-sm3,
.col-xl3 {
  width: 100%;
  margin-bottom: 40px;
}

.col-4 {
  width: calc((100% * 4) / 12);
  padding: 0 15px;
}

.col-lg4,
.col-md4,
.col-sm4,
.col-xl4 {
  width: 100%;
  margin-bottom: 40px;
}

.col-5 {
  width: calc((100% * 5) / 12);
  padding: 0 15px;
}

.col-lg5,
.col-md5,
.col-sm5,
.col-xl5 {
  width: 100%;
  margin-bottom: 40px;
}

.col-6 {
  width: calc((100% * 6) / 12);
  padding: 0 15px;
}

.col-lg6,
.col-md6,
.col-sm6,
.col-xl6 {
  width: 100%;
  margin-bottom: 40px;
}

.col-7 {
  width: calc((100% * 7) / 12);
  padding: 0 15px;
}

.col-lg7,
.col-md7,
.col-sm7,
.col-xl7 {
  width: 100%;
  margin-bottom: 40px;
}

.col-8 {
  width: calc((100% * 8) / 12);
  padding: 0 15px;
}

.col-lg8,
.col-md8,
.col-sm8,
.col-xl8 {
  width: 100%;
  margin-bottom: 40px;
}

.col-9 {
  width: calc((100% * 9) / 12);
  padding: 0 15px;
}

.col-lg9,
.col-md9,
.col-sm9,
.col-xl9 {
  width: 100%;
  margin-bottom: 40px;
}

.col-10 {
  width: calc((100% * 10) / 12);
  padding: 0 15px;
}

.col-lg10,
.col-md10,
.col-sm10,
.col-xl10 {
  width: 100%;
  margin-bottom: 40px;
}

.col-11 {
  width: calc((100% * 11) / 12);
  padding: 0 15px;
}

.col-lg11,
.col-md11,
.col-sm11,
.col-xl11 {
  width: 100%;
  margin-bottom: 40px;
}

.col-12 {
  width: calc((100% * 12) / 12);
  padding: 0 15px;
}

.col-lg12,
.col-md12,
.col-sm12,
.col-xl12 {
  width: 100%;
  margin-bottom: 40px;
}

@media (min-width: 481px) {
  .sm {
    flex-direction: row;
  }

  .col-sm1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-sm2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-sm3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-sm4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-sm5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-sm6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-sm7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-sm8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-sm9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-sm10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-sm11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-sm12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 768px) {
  .body_wrap {
    width: 720px;
  }

  .md {
    flex-direction: row;
  }

  .container {
    padding-left: 45px;
    padding-right: 45px;
  }

  .col-md1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-md2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-md3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-md4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-md5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-md6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-md7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-md8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-md9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-md10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-md11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-md12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
@media (min-width: 1030px) {
  .col-lg1 {
    width: calc((100% * 1) / 12);
    padding: 0 15px;
  }

  .col-lg2 {
    width: calc((100% * 2) / 12);
    padding: 0 15px;
  }

  .col-lg3 {
    width: calc((100% * 3) / 12);
    padding: 0 15px;
  }

  .col-lg4 {
    width: calc((100% * 4) / 12);
    padding: 0 15px;
  }

  .col-lg5 {
    width: calc((100% * 5) / 12);
    padding: 0 15px;
  }

  .col-lg6 {
    width: calc((100% * 6) / 12);
    padding: 0 15px;
  }

  .col-lg7 {
    width: calc((100% * 7) / 12);
    padding: 0 15px;
  }

  .col-lg8 {
    width: calc((100% * 8) / 12);
    padding: 0 15px;
  }

  .col-lg9 {
    width: calc((100% * 9) / 12);
    padding: 0 15px;
  }

  .col-lg10 {
    width: calc((100% * 10) / 12);
    padding: 0 15px;
  }

  .col-lg11 {
    width: calc((100% * 11) / 12);
    padding: 0 15px;
  }

  .col-lg12 {
    width: calc((100% * 12) / 12);
    padding: 0 15px;
  }
}
#mv {
  width: 100%;
  max-height: 250px;
  position: relative;
  margin-bottom: 80px;
  padding-bottom: 1px;
}
#mv .background {
  width: 100%;
  max-height: 250px;
  overflow: hidden;
}
#mv .background img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  #mv .background {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
}
#mv #profile {
  position: absolute;
  width: 100px;
  height: 100px;
  margin: auto;
  bottom: -50px;
  background: white;
  border-radius: 50%;
  overflow: hidden;
  right: 0;
  left: 0;
  z-index: 1;
  border: 4px solid #fff;
}
#mv #profile img {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  #mv #profile {
    width: 120px;
    height: 120px;
  }
}

.tabs {
  position: absolute;
  z-index: 10;
  right: 0;
  top: 150px;
}
.tabs .tab, .tabs .linktab {
  display: block;
  color: #0f0f0f;
  background: #f1f1f1;
  border: 1px solid #e4e4e4;
  border-right: none;
  position: relative;
  bottom: -1px;
  padding: 10px 8px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 7px;
  transition: 0.3s;
  line-height: 1;
}
.tabs .tab:hover, .tabs .linktab:hover {
  cursor: pointer;
  color: #0067C0;
}
.tabs .tab.is-active, .tabs .linktab.is-active {
  color: #0067C0;
  background: #fff;
}
@media (min-width: 768px) {
  .tabs {
    left: 100%;
    right: auto;
    top: 276px;
  }
  .tabs .tab, .tabs .linktab {
    display: block;
    padding: 15px 8px;
    color: #0f0f0f;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-right: 1px solid #e4e4e4;
    border-left-color: #f1f1f1;
  }
  .tabs .tab.is-active, .tabs .linktab.is-active {
    border-left-color: #fff;
  }
}
@media (min-width: 1030px) {
  .tabs .tab, .tabs .linktab {
    padding: 25px 11px;
  }
}

.panel {
  display: none;
  width: 100%;
}
.panel.is-show {
  display: block;
  animation: fade-in 0.4s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  background: #f4f6f7;
  font-size: 15px;
}

a {
  transition: 0.3s;
}

.postform {
  border: 1px solid #d4d4d4;
  margin: 1em;
  padding: 20px;
}

.postform p {
  margin: 0;
}







header {
  width: 100%;
  margin: 0 auto;
  padding: 0px 0px 30px;
}
@media (min-width: 768px) {
  header {
    width: -moz-fit-content;
    width: fit-content;
  }
}

h1.maintitle {
  text-align: center;
  margin: 40px auto 5px;
  font-size: 22px;
  line-height: 1.2em;
}
h1.maintitle a {
  color: #0f0f0f;
}

p.mainguide {
  font-size: 85%;
  margin: 0;
  text-align: center;
}

main {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 30px;
}

.body_wrap {
  background: white;
  position: relative;
}
@media (min-width: 768px) {
  .body_wrap {
    margin: 40px auto;
    border-radius: 15px;
    filter: drop-shadow(0 0 10px #0000001c);
  }
}

.contents .subarea {
  margin: 20px auto;
}
@media (min-width: 481px) {
  .contents .subarea {
    display: flex;
    flex-wrap: wrap;
  }
  .contents .subarea > div {
    width: calc(50% - 15px);
  }
  .contents .subarea > div:nth-of-type(2n) {
    margin-left: 30px;
  }
}
@media (min-width: 768px) {
  .contents .subarea > div {
    width: calc(33% - 20px);
    margin-left: 30px;
  }
  .contents .subarea > div:nth-of-type(3n-2) {
    margin-left: 0;
  }
}

.dateseparator {
  display: none;
}
.dateseparator.fixedseparator {
  display: block;
  margin: 0 0 0 15px;
  font-weight: bold;
  font-size: 85%;
  color: #b2b6b8;
}
.dateseparator.fixedseparator:before {
  font-family: "Material Symbols Outlined";
  content: "\e6aa";
  font-size: 15px;
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
}

article.logstatus-fixed {
  border: 1px solid #dadada;
  padding: 20px;
  border-radius: 5px;
  background: #fafafa;
  margin-bottom: 30px;
}

.onelogbox {
  border-top: 1px solid #e3e3e3;
  padding: 40px 15px;
}
.onelogbox:last-of-type {
  border-bottom: 1px solid #e3e3e3;
}
.onelogbox p.title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.onelogbox .comment {
  line-height: 1.8em;
  word-break: break-word;
}
.onelogbox a.imagelink {
  display: block;
  margin: 0 auto;
}
.onelogbox a[href="#readmore"],
.onelogbox a[href="#readclose"] {
  border: 1px solid;
  line-height: 1;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  padding: 5px 7px;
  font-size: 80%;
  border-radius: 3px;
  background: #f1f5f6;
}
.onelogbox a.taglink {
  background: #f1f5f6;
}
.onelogbox em.decorationE {
  font-style: normal;
  font-weight: bold;
  background: #cbf1fc;
}
.onelogbox small.decorationT {
  font-size: 50%;
}
.onelogbox ul.decorationL {
  list-style: none;
  margin-bottom: 0;
}
.onelogbox ul.decorationL li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 0.5rem;
}
.onelogbox ul.decorationL li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #16160e;
  position: absolute;
  margin: auto;
  top: 0.6em;
  left: 0;
}
.onelogbox q.decorationQ {
  display: block;
  background: #f4f4f4;
  padding: 10px;
  margin: 20px 0;
  border-left: 2px solid #ccc;
  color: #5f5f5f;
}
.onelogbox p.oneloginfo {
  font-size: 85%;
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
  color: #b5b5b5;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
.onelogbox p.oneloginfo a {
  color: #b5b5b5;
}
.onelogbox p.oneloginfo i {
  font-size: 18px;
  margin-left: 5px;
}
.onelogbox p.oneloginfo .categories a.categorylink {
  border: 1px solid;
  border-radius: 3px;
  padding: 1px 5px;
}
.onelogbox p.oneloginfo .categories a.categorylink:before {
  font-family: "Material Symbols Outlined";
  content: "\e2c8";
  font-size: 15px;
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
}
.onelogbox p.oneloginfo .categories a.categorylink:hover {
  color: #A3D4E4;
}

body.onelog .onelogbox {
  border-top: none;
}

footer {
  width: 100%;
  margin: 0 auto;
  padding: 8px 20px;
  border-top: 1px solid #00000015;
}
footer p.poweredby {
  margin: 0;
  font-size: 80%;
  text-align: right;
  color: #a5a5a5;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.6em;
}

/* ページナビゲーション領域 */
.utilitylinks { display: none;}
.pagenavi { text-align: center;}
.pagenavi p { margin-bottom: 1rem;}
.pagenavi p:empty { display: none;}

p.pagenums {
  display: flex;
  justify-content: center;
}
p.pagenums a.pagenumlink {
  display: block;
  color: #0f0f0f;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 14px;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
  border-radius: 45px;
  margin: 0 3px;
}
p.pagenums a.pagenumlink.pagenumhere {
  color: #ccc;
}
p.pagenums a.pagenumlink:hover {
  background: #f1f5f6;
  color: #00A0DF;
}

div#simplesearch {
  margin-bottom: 40px;
}

input.queryinput {
  padding: 3px 10px;
  height: 30px;
  border: 1px solid #b5b5b5;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  width: calc(100% - 55px);
}

input.submitbutton {
  height: 30px;
  width: 55px;
  border: none;
  background: #333333;
  color: white;
  padding: 3px 12px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

ul.cattree li {
  font-size: 14px;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}


ul.hashtaglist {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
}
ul.hashtaglist li {
  font-size: 12px;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #0067C0;
  margin-right: 5px;
  margin-bottom: 5px;
  background: #f1f5f6;
  line-height: 1;
  padding: 4px 5px;
  transition: 0.3s;
}
ul.hashtaglist li span.num {
  margin-left: 3px;
}
ul.hashtaglist li:before {
  font-family: "Material Symbols Outlined";
  content: "\e9ef";
  font-size: 15px;
  vertical-align: middle;
  font-weight: 400;
}

form.hashtagpullbox {
  margin-top: 20px;
}
form.hashtagpullbox select.hashtagpull {
  padding: 5px 3px;
  margin-bottom: 4px;
  width: 100%;
  cursor: pointer;
}
form.hashtagpullbox input.hashtagpullsubmit {
  border: none;
  background: #333333;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
}

ul.datelimitlist li {
  font-size: 14px;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
ul.datelimitlist li span.num {
  margin-left: 5px;
}
ul.datelimitlist ul.datelimitsublist {
  margin-left: 20px;
}
ul.datelimitlist ul.datelimitsublist li:before {
  content: "-";
  margin-right: 8px;
}

span.editlink .material-symbols-outlined {
  vertical-align: middle;
  font-variation-settings: "opsz" 20;
  margin-left: 5px;
}

p.situation {
  color: #666666;/*文字色*/
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #666666;
  padding: 1px 5px;
  font-size: 90%;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

body.nofiltering p.situation {
  display: none;
}

p.searchtarget {
  font-size: 85%;
  margin-top: 5px;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

p.sidebar_icons {
  text-align: right;
}
p.sidebar_icons i {
  font-size: 18px;
}

.utilitylinks {
  display: none;
}

iframe.embeddedmovie {
  max-width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.gallery .mainarea {
  display: flex;
  flex-wrap: wrap;
}
.gallery p.situation {
  width: 100%;
}
.gallery .onelogbox {
  border-bottom: none;
  width: 49%;
}

.imagelist_wrap {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.imagelist_wrap .imagelistitem {
  display: inline-block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
}
.imagelist_wrap .imagelistitem a {
  display: block;
  width: 100%;
  height: 100%;
}
.imagelist_wrap .imagelistitem a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.imagelist_wrap .imagelistitem a img.nsfw {
  position: relative;
  overflow: hidden;
}
.imagelist_wrap .imagelistitem a img.nsfw:before {
  font-family: "Material Symbols Outlined";
  content: "\e002";
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  width: 100%;
  height: 100%;
  background: #0000003a;
  position: absolute;
  z-index: 1;
  text-align: center;
  font-size: 50px;
  margin: auto;
  top: 0;
  padding: 20% 0 0;
}
@media (min-width: 768px) {
  .imagelist_wrap .imagelistitem a img.nsfw:before {
    font-size: 70px;
  }
}
.imagelist_wrap .imagelistitem a img.nsfw:after {
  content: "NSFW\aクリックで表示します";
  white-space: pre;
  color: #ffffff;
  display: block;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  padding-top: calc(20% + 54px);
  right: 0;
  left: 0;
  font-size: 13px;
  line-height: 1.4em;
}
.imagelist_wrap .imagelistitem a:hover {
  opacity: 0.6;
}
@media (min-width: 481px) {
  .imagelist_wrap .imagelistitem {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .imagelist_wrap .imagelistitem {
    width: 16.6666666667%;
  }
}

.freespace {
  line-height: 1.8em;
}
.freespace ul {
  list-style: none;
  margin-bottom: 0;
}
.freespace ul li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 0.5rem;
}
.freespace ul li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #00A0DF;
  position: absolute;
  margin: auto;
  top: 0.6em;
  left: 0;
}

.postarea .decoBtns input {
  background: #fff;
}
.postarea .decoBtns > span {
  display: block;
}

body.mode-gallery #posts_wrap {
  display: flex;
  flex-wrap: wrap;
}
body.mode-gallery #posts_wrap a.gallery-post {
  display: block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
body.mode-gallery #posts_wrap a.gallery-post span.pictcount {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 13px;
  right: 0;
  bottom: 0;
  padding: 3px 10px;
  filter: drop-shadow(0px 0px 3px #00000046);
}
body.mode-gallery #posts_wrap a.gallery-post span.pictcount .material-symbols-outlined {
  font-size: 13px;
  vertical-align: middle;
}
body.mode-gallery #posts_wrap a.gallery-post:hover {
  opacity: 0.6;
}
body.mode-gallery #posts_wrap a.gallery-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  body.mode-gallery #posts_wrap a.gallery-post {
    width: 33.3333333333%;
  }
}

body.mode-gallery ul.hashtaglist {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 2px;
}
body.mode-gallery ul.hashtaglist li {
  font-size: 85%;
  margin-right: 10px;
  padding: 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

body.mode-picts #posts_wrap {
  display: flex;
  flex-wrap: wrap;
}
body.mode-picts #posts_wrap a.picts-post {
  display: block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
}
body.mode-picts #posts_wrap a.picts-post span.pictcount {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 13px;
  right: 0;
  bottom: 0;
  padding: 3px 10px;
  filter: drop-shadow(0px 0px 3px #00000046);
}
body.mode-picts #posts_wrap a.picts-post span.pictcount .material-symbols-outlined {
  font-size: 13px;
  vertical-align: middle;
}
body.mode-picts #posts_wrap a.picts-post:hover {
  opacity: 0.6;
}
body.mode-picts #posts_wrap a.picts-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  body.mode-picts #posts_wrap a.picts-post {
    width: 33.3333333333%;
  }
}
body.mode-picts ul.cattree {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  border: 1px solid #d6d6d6;
  padding: 15px;
  border-radius: 2px;
  position: relative;
}
body.mode-picts ul.cattree li {
  font-size: 90%;
  margin-right: 10px;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
}
body.mode-picts ul.cattree li ul {
  border: none !important;
  padding: 0 !important;
  padding: 3px 0 !important;
  margin: 0 5px 0 10px;
}
body.mode-picts ul.hashtaglist {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 2px;
}
body.mode-picts ul.hashtaglist li {
  font-size: 85%;
  margin-right: 10px;
  padding: 0;
  position: relative;
  z-index: 2;
  background: transparent;
}

a.imagelink.nsfw,
body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "] {
  position: relative;
  overflow: hidden;
}
a.imagelink.nsfw:before,
body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "]:before {
  font-family: "Material Symbols Outlined";
  content: "\e002";
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
  color: #ffffff;
  display: block;
  width: 100%;
  height: 100%;
  background: #0000003a;
  position: absolute;
  z-index: 1;
  text-align: center;
  font-size: 50px;
  margin: auto;
  top: 0;
  padding: 20% 0 0;
}
@media (min-width: 768px) {
  a.imagelink.nsfw:before,
body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "]:before {
    font-size: 70px;
  }
}
a.imagelink.nsfw:after,
body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "]:after {
  content: "NSFW\aクリックで表示します";
  white-space: pre;
  color: #ffffff;
  display: block;
  text-align: center;
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  padding-top: calc(20% + 54px);
  right: 0;
  left: 0;
  font-size: 13px;
  line-height: 1.4em;
}
a.imagelink.nsfw img,
body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "] img {
  filter: blur(20px);
}

@media (min-width: 768px) {
  body.mode-picts #posts_wrap a.picts-post[data-flag="Flag(nsfw) "]:after {
    padding-top: calc(30% + 60px);
  }
}

.imagelistitem a {
  position: relative;
  background: #00000024;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
}
.imagelistitem a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background: #00000024;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}
.imagelistitem a:after {
  font-family: "Material Symbols Outlined";
  content: "\e002";
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
  position: absolute;
  z-index: 2;
  color: #fff;
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 30px;
}
.imagelistitem a img {
  position: relative;
  z-index: 3;
}
.imagelistitem a img.nsfw {
  z-index: -1;
}






img.emoji {
    height: 1em;
    width: 1em;
    margin: 0 .05em 0 .1em;
    vertical-align: -0.1em;
}




--------------------------


	
