@charset "utf-8";
/*URL折り返し*/
.comment a{word-break: break-all;}

/*枠線・カテゴリボタン装飾*/
.skin-wrap,
a.readmorebutton,
a.readmorebutton.readmoreclose,
.logstatus-fixed .comment,
.postbutton {
   border-radius: 0.5rem;
   letter-spacing: 1.5px;
}

/*装飾ボタンを整える*/
span.decoBtns{
	display: block !important;
        margin-bottom: 0.8rem;
}

.decoBtns input[type=button] {
       padding: 0.5rem;
}

.line-control input[type=checkbox]{
	background-color: #fff;
	appearance: auto;
}

.catChecks label{
	display: inline-block;
	vertical-align: top;
}

/*リストの装飾*/
.decorationL {
   list-style: circle;
   padding-left: 1rem;
}


/*極小サイズの文字サイズ*/
.decorationT {
   font-size: 70%;
}

/*引用*/
.decorationQ {
  padding: 1.1rem;
  position: relative;
  box-sizing: border-box;
  border-radius: 0.5rem;
}

.decorationQ:before{
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 10px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 10px;
    line-height: 1;
}

/*投稿するボタン*/
.postbutton {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    text-align: center;
    font-weight: 700;
}

/*ページャー*/
.number {
    margin-top: 2rem;
    text-align:center;
}

a.pagenumlink{
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0;
    padding: 0.5em;
    min-width: 2em;
    border-radius: 50%;
}

/*次のページ・前のページのマージン*/
.prevlink,
.nextlink,
.omitmark{
	letter-spacing:0;
}

.prevlink{
	margin:0 10px;
}

.nextlink,
.omitmark{
	margin:0 3px;
}

/*トップページへのリンク*/
.toppagelink{
  display:inline-block;
  margin-top:15px;
  width:fit-content;
  font-weight:700;
  border-bottom:solid 1px;
}

/*非表示*/
.logstatus-fixed .side-item,
.dateseparator,
.datelimitboxoptions,
.utilitylinks,
.num
{
   display: none !important;
}

/*画像を画面内に表示させる*/
img {
   object-fit: cover;
   aspect-ratio: 1 / 1;
   height:48%;
   width:48%;
   max-height: 100%;
   max-width: 100%;
   margin:5px 2px
}

/*アコーディオンメニューの余白*/
details.decorationO{
   margin-top:1em;
}

/* 画面下部のリンク */
.zlinks {
   display: flex;
   flex-direction: column; /* 子要素を縦に並べる */
}

.zlinks a{
   display:inline-block;
   margin:0.5em 0 0 0;
   font-weight:bold;
}

/* リンクホバー */
.labeledlink:hover,.zlinks a:hover{
   text-decoration : underline;
}

.foldedarea {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.decorationO[open] .foldedarea {
  height: auto;
}
