@charset "UTF-8";
/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&display=swap");
input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

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

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

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

.page {
  margin-bottom: 0;
}

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

img {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}
table tr {
  border-top: 1px solid #ccc;
}
table tr:last-of-type {
  border-bottom: 1px solid #ccc;
}
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設定
----------------------------------- */
.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;
  }

  .container {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1030px) {
  .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: #f4f6f7;
  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;
  border-bottom: 1px solid #e4e4e4;
}
@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;
}
@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 {
  border-bottom: 1px solid #e3e3e3;
  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;
}
.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: #00A0DF;
  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;
  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;
  }
}

.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: 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: #00A0DF;
  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: 20% 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(20% + 54px);
    right: 0;
    left: 0;
    font-size: 13px;
    line-height: 1.4em;
  }
}