@charset "utf-8";

/*フォント読み込み*/

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

/*フォント*/
body {
     font-family: "M PLUS Rounded 1c", serif;
}

/*画像を画面内に表示させる*/
img {
   width: 100%;
   height: 100%;
}

/*URL折り返し*/
.comment a {
   overflow-wrap: break-word;
}

/*先頭固定記事下余白*/
.logstatus-fixed .comment {
    padding-bottom: 1.5rem;
    padding-top: 0;
}

/*装飾ボタンを整える*/
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: 1rem;
}

/*投稿するボタン*/
.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;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 1.5rem;
    border-radius: 50%;
}

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


/* --- 背景つきタイトル --- */
.marker2 {
  background: linear-gradient(transparent 0%, #f1efef 0%);
  padding-right: 0.5em;
  padding-left: 0.5em;
  border-radius: 4px;
}

/* --- アコーディオンメニュー --- */
details[open] .content {
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-7px); 
  }
  100% {
    opacity: 1;
    transform: none;
  }
}