@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;800&display=swap&subset=japanese');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* ヘッダーとナビゲーション */
header {
  max-width: 110rem;
margin: 0 auto var(--margin-base);
}

header h1 {
font-size: 2.2em;
letter-spacing: 0.5rem;
font-weight: 600;
  text-align: center;
}

.toplink :not(a:hover){
	color: var(--color-text);
  transition: 0.3s;
}

header .text{
margin: 2em auto;
}

/* #menu{
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: calc(var(--margin-base) * 0.6);
margin-top: 2em;
}

#menu a{
display: block;
font-size: 0.7em;
text-align: center;
font-weight: 600;
color: var(--color-text);
letter-spacing: 0.1em;
  text-decoration: none;
}

#menu a i{
display: block;
margin: 0 auto 0.1em;
font-size: 15px;
border-radius:50%;
} */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

img {
  border: none;
  max-width: 100%;
  height: auto;
}

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: #ffffff;
  margin: 2em auto;
  width: 100%;
}

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

/* 絵文字 */
img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.1em;
}

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

.page {
  margin-bottom: 0;
}

body {
	position: relative;
	padding: var(--margin-base);
	font-family: var(--font-primary);
	letter-spacing: 0.15em;
	line-height: 1.8;
	font-weight: 400;
	overflow-x: hidden;
	background-color: var(--color-base);
	color: var(--color-text);
}

img {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}
table tr {
  border-top: 1px solid #fff;
}
table tr:last-of-type {
  border-bottom: 1px solid #fff;
}
table tr th, table tr td {
  padding: 10px 0;
}
@media (min-width: 768px) {
  table tr th, table tr td {
    padding: 15px 0;
  }
}

.la, .lab, .lad, .lal, .lar, .las {
  margin-right: 5px;
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
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 {
  margin: 1.6em auto 1em;
}

h1 span {
  font-size: 13px;
  display: block;
  line-height: 1.6em;
}
h1 span:before, h1 span:after {
  content: "";
  display: inline-block;
  height: 1px;
  width: 30px;
  background: #d6d6d6;
  vertical-align: middle;
  margin-right: 10px;
}

h2 {
  font-size: 18px;
  font-family: "Montserrat", YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  letter-spacing: 0.25em;
}
@media (min-width: 768px) {
  h2 {
    font-size: 24px;
    margin: 0 auto 20px;
  }
}

h3 {
  font-size: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

a {
  color: #00A0DF;
}
a:hover {
  color: #A3D4E4;
}

/* -----------------------------------
Flexbox設定
----------------------------------- */
.tega_container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}

.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) {
  .md {
    flex-direction: row;
  }

  .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;
  }

  .tega_container {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 768px) {
  .tega_container {
    width: 720px;
  }
}
@media (min-width: 1030px) {
  .tega_container {
    width: 960px;
  }

  .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;
  }
}
body {
  background: var(--color-base);
  font-size: 15px;
}

a {
  transition: 0.3s;
}

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

.postform p {
  margin: 0;
}

/* ------------ */
/* ▼本文入力欄 */
/* ------------ */
textarea.tegalogpost {
  border: 1px solid #adadad;
  border-radius: 4px;
  background-color: white;
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding: 0.5em;
  margin-bottom: 0.25em;
  line-height: 1.4em;
  box-sizing: border-box;
  width: 100%;
  overflow-wrap: break-word;
  overflow: auto;
}

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

/* 通常時 */
textarea.tegalogpost:focus:-moz-placeholder-shown {
  color: #bbb;
}
textarea.tegalogpost:focus:-ms-input-placeholder {
  color: #bbb;
}
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: #363636;
  /* 背景色 */
  color: white;
  /* 文字色 */
  font-size: 1rem;
  /* 文字サイズ */
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  /* 太字 */
  text-decoration: none;
  /* 下線を消す */
  border: none;
  padding: 5px 14px;
  border-radius: 0;
  /* 枠の角丸 */
  cursor: pointer;
  transition: 0.3s;
}

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

/* ------------------ */
/* ▼文字装飾ボタン群 */
/* ★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;
  -webkit-text-decoration-color: red;
          text-decoration-color: red;
  -webkit-text-decoration-style: double;
          text-decoration-style: double;
}

/* 強調  :E */
.decoBtnE {
  font-weight: bold;
  color: blue;
}

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

/* 引用  :Q */
/* 小さめ:S */
/* 極小  :T */
.decoBtnT {
  font-size: 11px !important;
}

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

/* 文字色:C */
.decoBtnC {
  color: red;
}

/* 背景色:M */
.decoBtnM {
  color: blue;
}

@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;
}

header, main, footer {
  max-width: 100%;
}

@media (min-width: 768px) {
  header, main, footer {
    max-width: none;
  }
}

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

h1.maintitle {
  text-align: center;
  margin: 40px auto 20px;
  font-size: 24px;
  line-height: 1.2em;
}
h1.maintitle a {
  color: #0f0f0f;
}
h1.maintitle small.subtitle {
  font-size: 14px;
}

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

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

.body_wrap {
  min-height: 100vh;
  background: white;
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  main {
    width: -moz-fit-content;
    width: fit-content;
  }
  .body_wrap {
    width: fit-content;
    max-width: none;
  }
}

@media (min-width: 1030px) {
  .contents {
    display: flex;
  }
}
@media (min-width: 1030px) {
  .contents .mainarea {
    /* width: calc(100% - (260px + 35px)); */
    margin-right: 35px;
  }
}
.contents .subarea {
  padding-top: 20px;
  max-width: 300px;
  margin: 20px auto;
}
/* 240516_変更済み */
.categoryTree {
  /* カテゴリ要素を横並びにする */
  display: flex;
  flex-wrap: wrap; /* 必要に応じて改行する */
}

.categoryTree li {
  /* カテゴリ要素を横並びにする */
  display: inline-block;
  margin-right: 10px; /* カテゴリ間の間隔を設定 */
}

.datelimitboxoptions { display: none !important; }

@media (min-width: 1030px) {
  /* .contents .subarea {
    width: 260px;
  } */
}

.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: "Line Awesome Free", "Line Awesome Brands";
  content: "\f08d";
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

article:first-of-type {
  padding-top: 10px;
}
article:last-of-type {
  border-bottom: none;
}

.onelogbox {
  padding: 40px 15px;
}
.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;
  max-width: 50%;
  height: 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;
  /* font-family:Avenir Next,Helvetica Neue,Helvetica,Arial,'游ゴシック',YuGothic,Yu Gothic,'ヒラギノ角ゴ Pro W3',Hiragino Kaku Gothic Pro,'メイリオ',Meiryo,'ＭＳ Ｐゴシック',MS PGothic,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: var(--tega-E);
}
.onelogbox small.decorationT {
  font-size: 50%;
}
.onelogbox ul.decorationL {
  list-style: none;
  margin-bottom: 0;
}
.onelogbox ul.decorationL li {
  padding-left: 18px;
  position: relative;
  line-height: 30px;
  margin-bottom: 0.5rem;
}
.onelogbox ul.decorationL li:before {
  content: "";
  width: 5px;
  height: 5px;
  display: block;
  background: #aaa;
  position: absolute;
  margin: auto;
  top: 1.2em;
  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;
  font-size: 12px;
  padding: 2px 5px;
}
.onelogbox p.oneloginfo .categories a.categorylink:before {
  font-family: "Line Awesome Free", "Line Awesome Brands";
  content: "\f07b";
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
  margin-right: 5px;
}
.onelogbox p.oneloginfo .categories a.categorylink:hover {
  color: #A3D4E4;
}
select {
  padding: 3px 20px 3px 3px;
  box-sizing: border-box;
  max-width: 100%;
}
select.hashtagpull {
  height: 30px;
  border-radius: 0;
  width: calc(100% - 50px);
  vertical-align: bottom;
}
input.hashtagpullsubmit {
  height: 30px;
  border: none;
  background: #333333;
  color: white;
  padding: inherit;
  margin-left: 0;
  width: 50px;
  cursor: pointer;
}
footer {
  /* background: #000; */
  width: 100%;
  /* margin: 0 auto;
  padding: 5px 0;
  position: absolute; */
  bottom: 0;
}
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;
}
@media (min-width: 768px) {
  footer {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}

.pagenavi {
  margin: 30px auto;
}

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;
}
span.omitmark {
  line-height: 45px;
  margin: 0 10px;
}
div#simplesearch {
  margin-bottom: 40px;
}

input.queryinput {
  padding: 3px 10px;
  height: 35px;
  border: 1px solid #b5b5b5;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  margin-right: 0;
}

input.submitbutton {
  height: 35px;
  border: none;
  background: #333333;
  color: white;
  padding: 3px 17px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  margin-left: 0;
  cursor: pointer;
}

ul.cattree li {
  font-size: 14px;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
ul.cattree li span.num {
  margin-left: 5px;
}
ul.cattree.depth1 {
  margin: 0px 10px 20px 0px;
  /* margin: 20px auto; */
}
ul.cattree.depth1 > li:before {
  font-family: "Line Awesome Free", "Line Awesome Brands";
  content: "\f07b";
  font-weight: bold;
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
ul.cattree.depth2 {
  margin-left: 20px;
}
ul.cattree.depth2 li:before {
  content: "-";
  margin-right: 8px;
}

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: #333;
  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: "Line Awesome Free", "Line Awesome Brands";
  content: "\f292";
  font-weight: bold;
  font-size: 14px;
  vertical-align: middle;
}

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;
}

p.situation {
  background: #f4f4f4;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 90%;
  color: #9a9fa2;
  font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

body.nofiltering p.situation, 
body.onelog 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;
}

a.nsfw {
  position: relative;
  overflow: hidden;
  display: block;
}
a.nsfw img {
  filter: blur(15px);
}
a.nsfw:before {
  font-family: 'Line Awesome Free';
  font-weight: 900;
  content: "\f071";
  vertical-align: middle;
  margin-right: 5px;
  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: 48% 0 0;
}
@media (min-width: 768px) {
  a.nsfw:before {
    font-size: 70px;
  }
  a.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(50% + 54px);
    right: 0;
    left: 0;
    font-size: 13px;
    line-height: 1.4em;
  }
}

figcaption {
  text-align: center;
  margin-top: 1%;
}



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

	/* ▼鍵違いエラーの表示 */
	.passkeyerror {
		/* display: block; */
		color: #333;
		margin: 0 0 2em 0;
		/* padding: 0.33em 0.25em; */
	}

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

		/* ▼入力欄前のガイド文 */
		.passkeyguide {
			margin-right: 0.5em;
		}
		/* ▼鍵入力欄 */
		.passkeyinput {
			width: 10em;
			margin: 0 0.5em 3px 0;
		}

    .passkeysubmit[type="submit"] {
      appearance: none;
      -webkit-appearance: none;
      }

		/* ▼送信ボタン */
		.passkeysubmit {
			/* padding: 0.3em;
      background-color: #fff;
      border-radius: 3px;
      border: 1px solid #333; */

      height: 28px;
      border: none;
      background: #333333;
      color: white;
      padding: 3px 17px;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      margin-left: 0;
      cursor: pointer;      
		}
    
    @media (max-width: 768px) {
      .passkeysubmit {
          padding: 0.5em; /* スマホでのクリック領域を大きくする */
          border-radius: 5px; /* 角を少し丸める */
      }
  }

  /* カスタム絵文字ピッカー(その1) | Takotubo Club
https://10rin0.github.io/takodoc/tegalog/%E3%83%91%E3%83%BC%E3%83%84/cemoji_01/ */
.cepicker {
	margin: 10px auto;
	padding: 5px 0;
	max-height: 300px;
	overflow-y: auto;
	background-color: #dfdfdf;

	& #CemojiList {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 6px 3px;
	}

	& .oneCemoji {
		display: inline-grid;
		justify-items: center;
		padding: 2px;
		background-color: #f0f0f0;
	}

	& .cename, .cectrl {
		display: none;
	}

	& .oneCemoji img {
		height: 2em;
		cursor: pointer;
	}
}
.cepicker:empty {
	display:none;
}

/* スマホ画面向けの絵文字ピッカー */
@media screen and (max-width: 768px) {
  .cepicker {
      width: 100%;
      padding: 10px;
  }
}


/* ================================================================ */
/* てがろぐ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化 */
		}
		/* (マウスが載ったとき) */
		.cardlinkbox:hover {
			background-color: #f5fff5; /* 背景色 */
			border-color: #8c8;        /* 枠線色 */
		}
			/* ▽リンクカード内の画像枠 (※読み込まれた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 { 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;           /* 文字サイズ(小さめ) */
				}