/* 共通化 */
:root{
    /* カラー */
    --base-blue: #4a9ecc;
    --base-blue-deep: #0e7ebb;
    --base-green: #33b689;
    --base-light-green: #eefce7;
    --base-light-black: #434343;
    --border-light-black: #707070;
    --base-orange: #f0903e;
    --base-light-orange: #ffe8d5;
    --base-red: #fa3635;
    /* フォントサイズ */
    --base-h1: 30px;
    --base-h2: 20px;
    --base-h3: 18px;
    --base-p: 15px;
    --base-min-p: 14px;
    /* 文字の太さ */
    --base-weight-normal: 700;
    --base-weight-bold: bold;
}
.bbpress .cf{
    display: inline;
}
.bbpress .cf::before{
    display: none;
}
.wrap .cf{
    display: flex;
    flex-direction: row-reverse;
    gap: 50px;
    width: 100%;
    justify-content: left;
}
.cf-container {
    display: flex;
    justify-content: space-between;
    height: auto;
    gap: 10px;
}
.wrap {
    background-color: #fff;
    padding-top: 100px;
}
.container{
    max-width: 1440px;
}
.main-column.clearfix.main-container::before,.main-column.clearfix.main-container::after{
    display: none;
}
/* 投稿ページ */
.single-file img{
  max-width: 100px !important;
  width: 90%;
}
/* PC・SPの表示 */
.sp-none{
    display: block;
}
.pc-none{
    display: none;
}
.archive-txt,
.single.bbpress .side-column .news.widget ul a
{
  font-size: var(--base-p);
}
@media(max-width:1300px){
    .sp-none {
    display: none !important;
  }
  .pc-none {
    display: block;
  }
}
/* スマホ/タブレット用 */
@media (max-width: 1080px) {
  .container {
    max-width: none;
  }
  .main-column,
  .main-container {
    width: 100%;
  }
  .dpt-container {
    width: 100%;
  }
  .cf-container {
    flex-direction: column;
    /* background-color: #f00; */
  }
}
@media (max-width: 768px) {
  :root{
      /* フォントサイズ */
      --base-h1: 30px;
      --base-h2: 20px;
      --base-h3: 18px;
      --base-p: 18px;
      --base-min-p: 16px;
  }
}