@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;700&family=Zen+Kaku+Gothic+New&family=Zen+Kurenaido&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');


/*------------------------------------------------------------
  基本設定
------------------------------------------------------------*/
html, body {
    min-height: 100vh;
    background: #f6f6f6;
    color: #0d1b17;
    font-size: 1rem;
    font-family: '游ゴシック', sans-serif;
    font-weight: normal;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: #66cda3;
}

a:hover {
  text-decoration: underline;
}

p {
    line-height: 1.7;
}

ruby {
    ruby-position: over;
    font-size: 1rem;   
    line-height: 1.5;    
}

ruby rt {
    font-size: 0.6rem;         
    letter-spacing: 0.05em;     
}

ruby rp {
    display: none; 
}

.term {
  color: #2f2f2f; 
  background: #f6f6f6;
  padding: 2px 6px;  
  border-left: 6px solid #4da88b;
}

@media (max-width: 1024px) {
 html, body {
        letter-spacing: 0.15em;
    }
}

@media (max-width: 768px) {
 html, body {
        font-size: 0.9rem;  
        letter-spacing: 0.1em;
    }

  ruby rt {
        font-size: 0.5rem;  
    }
}

@media (max-width: 480px) {
    ruby rt {
        font-size: 0.45rem;
    }
}



main {
    flex: 1;
}


/* 見出し */
h2, h3, h4 {          
    font-family: "Kaisei Decol", "Sawarabi Mincho", serif;
    letter-spacing: 0.2em;
    line-height: 1.4;
    color: #2f2f2f;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin: 30px 0 50px;
    position: relative;
    color: #2f2f2f;
}

h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 150px;
    height: 1.5px;
    background: linear-gradient(90deg, #66cdaa, #c9a24d);
    transform: translateX(-50%);
}

h3 {
    /*font-family: "Zen Kaku Gothic New", sans-serif;*/
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #444;
    position: relative;
    padding-left: 12px;
}

h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 4px;
    height: 1.2em;
    background: #66cdaa;
    pointer-events: none;
}

h4 {
    /*font-family: "Zen Kaku Gothic New", sans-serif;*/
    font-size: 1.1rem;
    margin: 25px 0 12px;
    color: #555;
    border-left: 3px solid #c9a24d;
    padding-left: 12px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
        margin: 30px 0 40px;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1rem;
    }
}


/* セクション */
section {
    padding: 40px 20px;
    margin-bottom: 5px;
}

section p {
    padding-left: 2rem;
    padding-right: 2rem;
}

section > p {
    margin-bottom: 2rem;
}



/*------------------------------------------------------------
  下層ページ ヘッダー
------------------------------------------------------------*/
.page-header {
    position: relative;
    height: 40vh;
    min-height: 260px;
    overflow: hidden;
    margin: 0;
}

.page-header img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.page-header__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.page-title {
    font-family: "Kaisei Opti", serif;
    font-size: 3rem;
    letter-spacing: 0.25em;
    color: #f6f6f6;
    margin: 0;
}

.page-subtitle {
    margin-top: 10px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: #c8f5e5;
}

@media (max-width: 768px) {
    .page-header {
        height: 25vh;
    }

    .page-title {
        font-size: 2.2rem;
        letter-spacing: 0.18em;
    }

    .page-subtitle {
        font-size: 0.9rem;
    }
}




/*------------------------------------------------------------
  メニューバー
------------------------------------------------------------*/
header {
  background-color: #dbdbdb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
}

.hamburger.colorchange {
  background-color: #dbdbdb;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.2s;
  -o-transition: 0.4s;
}

.hamburger._active.colorchange {
  background-color: transparent;
}

.hamburger__line {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}

.hamburger__line,
.hamburger__line::before,
.hamburger__line::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  background-color: #2f2f2f;
  position: absolute;
  left: 50%;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.hamburger__line::before {
  top: -8px;
}

.hamburger__line::after {
  bottom: -8px;
}


.hamburger._active .hamburger__line {
  background: transparent;
}

.hamburger._active .hamburger__line::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger._active .hamburger__line::after {
  bottom: 0;
  transform: translateX(-50%) rotate(-45deg);
}

@media screen and (min-width: 769px) {
  .hamburger {
    display: none;
  }
}

.mainmenu {
  width: 100%;
  top: 0;
  height: 65px;
}

.mainmenu__main {
  font-size: 1.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.mainmenu__item {
  height: 100%;
  position: relative;
  color: #dbdbdb;
  text-align: center;
  list-style: none;
}

.mainmenu__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  background-color: #dbdbdb;
  transition: 0.3s;
  color: #2f2f2f;
  font-size: 1em;
  font-weight: 400;
  box-sizing: border-box;
  border-left: 2px solid transparent;
}

.mainmenu__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c9a24d;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.mainmenu__item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mainmenu__item a:hover {
  background-color: #f3f3f3;
  color: #66cdaa;
}

.mainmenu__item a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c9a24d;
  transform: scaleX(1);
  transform-origin: left;
}

.mainmenu__child {
  font-size: 0.9rem;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #dbdbdb;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
}

.mainmenu__item._has-child:hover .mainmenu__child {
  visibility: visible;
  opacity: 1;
}

.mainmenu__child li a {
  font-weight: bold;
  display: flex;
  position: relative; 
  color: #666666;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.mainmenu__child li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c9a24d; 
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mainmenu__child li a:hover {
  background-color: #f3f3f3;
  color: #66cdaa;
}

.mainmenu__item a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


@media screen and (min-width: 769px) {
  #js-mainmenu {
    position: sticky;
    top: 0;
    width: 100%;  
    z-index: 1000;
    background-color: #dbdbdb; 
  }

 
  .mainmenu__main {
    display: flex;
    justify-content: space-around;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

   .mainmenu__item {
    flex: 1;      
    position: relative;
  }
 .mainmenu__child {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;   
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
    background-color: #dbdbdb;
  }

  .mainmenu__item._has-child:hover .mainmenu__child {
    visibility: visible;
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .mainmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(245, 245, 243, 0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    box-sizing: border-box;
  }
  
  .mainmenu._active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .mainmenu__main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 200px;
    height: auto;
    min-height: auto;
  }
  
  .mainmenu__item {
    display: block;
    width: 100%;
    margin-bottom: 0;
    position: relative;
  }
  
  .mainmenu__item a {
    display: block;
    background: none;
    color: #2f2f2f;
    font-size: 1em;
    padding: 12px 15px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
  }
  
  .mainmenu__item a:hover {
    background: #dbdbdb;
    opacity: 0.5;
  }

  .mainmenu__item._has-child .mainmenu__child {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mainmenu__item._has-child .mainmenu__child.active {
    display: block;
    max-height: 300px;
  }

  .mainmenu__item._has-child a {
    position: relative; 
  }

  .mainmenu__item._has-child a.active::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #c9a24d;
    transform: scaleX(1);
    transform-origin: left;
  }

  .mainmenu__child {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .mainmenu__child li {
    display: block;
    width: 100%;
  }
  
  .mainmenu__child li a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a2f55;
    font-size: 0.9em;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    box-sizing: border-box;
    height: auto;
    min-height: 40px;
  }
  
  .mainmenu__child li a:hover {
    background: #f3f3f3;
    opacity: 0.5;
    color: #66cdaa;
  }
  
  .mainmenu__child li:last-child a {
    border-bottom: none;
  }
  
  .mainmenu__child li a::after {
    display: none;
  }
}



/*------------------------------------------------------------
  サブメニュー
------------------------------------------------------------*/
.submenu {
    display: flex;
    justify-content: space-between; 
    padding: 0 20px;
    margin-top: 10px;
    background-color: #efefef; 
}

.submenu a {
    position: relative;
    flex: 1; 
    text-align: center;
    padding: 8px 0;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #2f2f2f;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.submenu a::before,
.submenu a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0.5px;
    background-color: rgba(0,0,0,0.08);
}

.submenu a::before { left: 0; }
.submenu a::after { right: 0; }

.submenu a:hover {
    color: #479279;
    background-color: #e3f0df;
}

.submenu a.active {
    color: #fff;
    background-color: #66cdaa;
}

@media (max-width: 768px) {
    .submenu {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 10px;
    }

    .submenu a {
        padding: 5px 0;
        font-size: 0.95rem;
    }
}



/*------------------------------------------------------------
  フッター
------------------------------------------------------------*/
footer {
    background-color: #f6f6f6;
    padding: 10px 0; 
    color: #888;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

footer p {
    margin: 0;
}

@media (max-width: 768px) {
    footer {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}



/*------------------------------------------------------------
  トップに戻るボタン
------------------------------------------------------------*/
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #66cdaa, #4da88b);
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

#backToTop:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    #backToTop {
        width: 40px;
        height: 40px;
        font-size: 20px;
        line-height: 40px;
        bottom: 20px;
        right: 20px;
    }
}



/*------------------------------------------------------------
  2カラム　てがろぐ用
------------------------------------------------------------*/
.two-column {
    display: grid;
    grid-template-columns: 1fr 2.5fr; 
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start; 
}

.two-column_item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.two-column_item > * + * {
    margin-top: 24px;
}

.two-column h4 {
    position: relative;
    font-size: 1rem;
}

.two-column_item.side {
    margin: 10px;
    background: #f6f6f6;
    padding: 20px;
    border: 1px solid #66cdaa;
}


@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .two-column_item.main {
        order: 1;
    }

    .two-column_item.side {
        order: 2;
    }

    .two-column h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        padding-left: 18px;
    }

    .two-column h4 {
        font-size: 0.99rem;
    }

    .two-column p {
        line-height: 1.8;
    }

    .two-column_item.side {
        padding: 16px;
        border-left-width: 3px;
    }
}


/*------------------------------------------------------------
  管理・投稿フォーム（隠す）
------------------------------------------------------------*/
.admin-toggle {
    margin: auto;
    padding: auto;
    padding-top: 10%;
    max-width: 900px;
    font-size: 0.85rem;
}

.admin-toggle summary {
    list-style: none;
    cursor: pointer;
    color: #aaa;
    text-align: center;
    letter-spacing: 0.2em;
}

.admin-toggle summary::marker {
    display: none;
}

.admin-toggle summary:hover {
    color: #66cdaa;
}

.admin-toggle[open] summary {
    color: #66cdaa;
    margin-bottom: 20px;
}


.admin-toggle .postform,
.admin-toggle .adminmenu {
    text-align: center;
}



/*------------------------------------------------------------
検索フォーム
------------------------------------------------------------*/
.searchbox {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px; 
}

.searchbox form {
    display: inline-flex;
}

.searchbox input[type="text"] {
    padding: 4px 10px;
    border-radius: 6px 0 0 6px;
    border: 1px solid #66cdaa;
    outline: none;
    font-size: 0.85em;
    background-color: #ffffff;
    color: #2f2f2f;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.searchbox input[type="text"]:focus {
    border-color: #4da88b;
    box-shadow: 0 0 0 2px rgba(102, 205, 170, 0.25);
}

.searchbox button {
    position: relative;
    width: 36px;
    padding: 4px;
    font-size: 0;   
    border-radius: 0 6px 6px 0;
    border: 1px solid #66cdaa;
    border-left: none;
    background: linear-gradient(135deg, #66cdaa, #4da88b);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.searchbox button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-60%, -60%);
}

.searchbox button::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 2px;
    background: #fff;
    top: 60%;
    left: 60%;
    transform: rotate(45deg);
}



/*------------------------------------------------------------
基本
------------------------------------------------------------*/
.comment {
  background-color: #fafafa;
  border: 1px solid #66cdaa; 
  padding: 3.5% 5%;
	position: relative;
}

@media (max-width: 599px){
	.comment{
		padding: 3.5% 5% 5%;
	}	
}

article{
	margin-bottom: 3rem;
}

.nodata,
.nolist{
	background-color: var(--sub-bg-color2);
	padding: 3rem 5%;
}
.oneloginfo{
	font-size: 0.8rem;
	padding: 0.4em 0 0;
	text-align: right;
}
.postdate{
	padding-left: 1rem;
	display:inline-block;            
    text-decoration: none;    
    cursor: default;           
    font-size: 0.85rem;        
}
.postdate a {
    text-decoration: none;      
    pointer-events: none;     
    cursor: default;          
    color: #888;
}
article.logstatus-lock .comment:before{
	content: "\f023";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 1.3em;
	position: absolute;
	right: calc(50% - 0.6em);
	top: -20px;
}
article.logstatus-fixed .comment:before{
	content: "\f08d";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	font-size: 1.3em;
	position: absolute;
	right: calc(50% - 0.6em);
	top: -20px;
}
.dateseparator{
	display: none;
}
.onelogonly{
	display: none;
}
body.onelog .onelogonly{
	display: block;
}




/*外部リンク・ハッシュタグ色*/
.comment a {
  color: #c9a24d;
}

a.readmorebutton{
	background-color: #c29c4a;
  color: #f6f6f6;
	display: inline-block;
	font-size: 0.9rem;
	margin: 0 0 5px 0;
	padding: 0.1em 0.6em 0.2em;
	text-decoration: none;
	transition: background-color 0.3s ease-in-out;
}


/*先頭固定投稿の色*/
.logstatus-fixed .comment {
    background-color: #fafafa;
}


/*引用の背景色*/
.decorationQ {
   background-color: #fafafa;
}


img {
   width: 80%;
   height: 80%;
}

.comment a {
   overflow-wrap: break-word;
}

.number {
    text-align: center;
}

.pagenumlink a {
  margin: 0 0.4rem;
  color: #66cda3;
  text-decoration: none;
  opacity: 0.6; /* 通常は薄め */
  text-align: center;
}

.pagenumlink a:hover {
  opacity: 1;
}

/* 現在ページ*/
.pagenumhere {
  font-weight: bold;
  opacity: 1;
  color: #3ea98a; /* 濃い緑にして強調 */
  margin: 0 0.4rem;
  text-align: center;
}

.hashtagpullbox,
.catpullbox{
	display: flex;
}

.hashtaglist li{
	display: inline-block;
	padding-right: 0.5em;
}

.hashtaglist li:before{
	content: '#';
	color: #66cdaa;
}

.hashtaglist .num{
	display: none;
}

.datelimitboxoptions{
	display: none;
}



/* input -------------------------------------------- */
select,
input.queryinput,
input.passkeyinput{
	border: 1px solid var(--main-text-color);
	background-color: var(--sub-bg-color);
	color: var(--main-text-color);
	vertical-align: bottom;
	width: calc(100% - 3rem);
	height: 2rem;
}
input[type="submit"],
input.passkeysubmit,
.postarea input[type="button"],
.postarea input[type="submit"],
.postarea input[type="text"]{
	border: none;
	background-color: var(--main-text-color);
	color: var(--sub-bg-color);
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: bold;
	height: 2rem;
	letter-spacing: 2px;
	padding: 0 0.5rem 0 0.6rem;
	vertical-align: bottom;
}
main input.passkeyinput{
	width: calc(100% - 7rem);
	max-width: 300px;
}
main .comment input.passkeysubmit{
	letter-spacing: 1px;
	padding: 0 0 2px;
	text-align: center;
	width: 7rem;
}


/* parts -------------------------------------------- */
em{
	font-style: normal;
    font-weight: bold;
    margin: 0 0.2em;
    padding: 0 0.2em;
    background-image: linear-gradient(rgba(0, 0, 0, 0) 50%, var(--accent2) 50%);
}
.decorationM{
	padding: 0 0.2em;
}

small.decorationS{
	font-size: 0.85rem;
}
small.decorationT{
	font-size: 0.7rem;
}

ul.decorationL{
	list-style-type: disc;
	padding-left: 1.5rem;
	list-style-position: outside;
	margin: 0.5em 0;
}
q.decorationQ{
	background-color: rgb(var(--main-text-rgb),0.15);
	padding: 1em 2em;
	font-size: 0.9rem;
	margin: 0.5em 0;
	position: relative;
}
q.decorationQ:before{
	content: "\f10d";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	color: rgb(var(--main-text-rgb), 0.6);
	position: absolute;
	left: 6px;
	top: 0;
}
q.decorationQ:after{
	content: "\f10e";
	font-family: 'Line Awesome Free';
	font-weight: 900;
	color: rgb(var(--main-text-rgb), 0.6);
	position: absolute;
	right: 6px;
	bottom: 0;
}
figure{
	background-color: var(--sub-bg-color);
	display: inline-block;
	margin: 5px 0;
	padding: 5px 10px;
	vertical-align: top;
}
figcaption{
	font-size: 0.85rem;
	line-height: 1.5;
}
small figure,
figure.nsfw{
	width: var(--miniimg-size);
}
.right_block{
	text-align: right;
}
iframe.embeddedmovie{
	max-width: 100%;
}

span.passkeybox{
	display: block;
	margin-bottom: 0.3rem;
}
span.passkeyguide{
	display: block;
}
article details{
	summary{
		background-color: color-mix(in srgb, var(--main-text-color) 15%, transparent);
		border-radius: 5px;
		cursor: pointer;
		font-size: 0.9rem;
		font-weight: bold;
		padding: 0.1em 0.6em 0.2em;
	}
	.foldedarea{
		border-bottom: 5px solid color-mix(in srgb, var(--main-text-color) 15%, transparent);
		border-radius: 5px;
		padding: 1em 0;
	}
	details{
		margin: 1em;
	}
}

/* img -------------------------------------------- */
img.nsfw{
	filter: blur(5px);
	opacity: 0.1;
}
a.imagelink{
	display: inline-block;
	line-height: 1;
	vertical-align: bottom;
	margin: 5px 0;
}
.comment img{
	max-height: var(--largeimg-size);
	width: auto;
}
.comment small img.embeddedimage,
.comment a.nsfw img.nsfw{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: var(--miniimg-size);
}
a.imagelink.nsfw{
	background-color: rgb(var(--main-text-rgb),0.3);
	overflow: hidden;
	position: relative;
	text-decoration: none;
}
a.imagelink.nsfw:before{
	content: '画像を見る';
	position: absolute;
	top: calc(50% - 0.5em);
	left: calc(50% - 2.5em);
	font-size: 0.85rem;
}
img.prof{
	width: 4rem;
	height:4rem;
	object-fit: cover;
	object-position: 50% 50%;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 1rem;
}
img.emoji{
	width: 1rem;
	height: 1rem;
	vertical-align: middle;
	margin: 0 3px 3px;
}
