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

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

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

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
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: #00A0DF;
}
a:hover {
  color: #A3D4E4;
}

/* -----------------------------------
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: #00A0DF;
}
.tabs .tab.is-active, .tabs .linktab.is-active {
  color: #00A0DF;
  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;
}

/* ------------ */
/* ▼本文入力欄 */
/* ------------ */
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%;
  height: 100px !important;
  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 {
  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: #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;
  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;
}

.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;
}
p.pagenums span.omitmark {
  line-height: 3em;
  margin: 0 10px;
}

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.cattree li span.num {
  margin-left: 5px;
}
ul.cattree.depth1 {
  margin: 20px auto;
}
ul.cattree.depth1 > li:before {
  font-family: "Material Symbols Outlined";
  content: "\e2c8";
  font-size: 15px;
  vertical-align: middle;
  margin-right: 5px;
  font-weight: 400;
}
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: "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 {
  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 {
  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 .gallery-post {
  display: block;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
body.mode-gallery #posts_wrap .gallery-post a {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  body.mode-gallery #posts_wrap .gallery-post a:after {
    padding-top: calc(30% + 54px);
  }
}
body.mode-gallery #posts_wrap .gallery-post span.pictcount {
  display: block;
  position: absolute;
  color: #fff;
  font-size: 13px;
  right: 0;
  bottom: 0;
  padding: 3px 10px;
  z-index: 1;
  filter: drop-shadow(0px 0px 3px #00000046);
}
body.mode-gallery #posts_wrap .gallery-post span.pictcount .material-symbols-outlined {
  font-size: 13px;
  vertical-align: middle;
}
body.mode-gallery #posts_wrap .gallery-post:hover {
  opacity: 0.6;
}
body.mode-gallery #posts_wrap .gallery-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  body.mode-gallery #posts_wrap .gallery-post {
    width: 33.3333333333%;
  }
}
body.mode-gallery ul.cattree {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  border: 1px solid #d6d6d6;
  padding: 15px;
  border-radius: 2px;
  position: relative;
}
body.mode-gallery ul.cattree li {
  font-size: 90%;
  margin-right: 10px;
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
}
body.mode-gallery ul.cattree li ul {
  border: none !important;
  padding: 0 !important;
  padding: 3px 0 !important;
  margin: 0 5px 0 10px;
}
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;
}