@charset "utf-8";

/**
* Author: Vanillaice (Akira) - https://vanillaice000.blog.fc2.com/
* Website skin name: OmbreRose
* The first edition: 2019.12.15
* without thumbnail ★relate_ul・font-size:small→mediumに指定した（沙姫）*/
*/

/***==========================================
      reset(do NOT change or delete)
==========================================***/

*::before,*::after{box-sizing:border-box}ins{text-decoration:none}ul,ol{list-style:none;margin:0;padding:0}dd,dl,figcaption,figure,h1,h2,h3,h4,li,p{margin:0}img{height:auto;line-height:0;vertical-align:bottom;font-size:0}iframe{border:0}embed,iframe,img,table,textarea{max-width:100%}input,textarea{font-size:16px}code,pre{white-space:pre-wrap;font-family:Menlo,consolas,Courier}*{box-sizing:border-box}:focus{outline:0}#fc2_text_ad,pre,table{word-break:break-all}.fc2_footer{margin:20px 0 0}#fc2_text_ad{margin:40px 0!important;letter-spacing:normal;line-height:1.2;font-size:11px;word-break:break-all}input::-moz-focus-inner,button::-moz-focus-inner{border:0}#fc2_text_ad a{color:#646464}#change_mobile{display:none}#sh_fc2blogheadbar{z-index:4000!important}


/***==========================================
      svgs
==========================================***/

.svg-inline,
.svg-inline-stroke {
  display: inline-block;
  height: 1em;
  font-size: inherit;
  vertical-align: -.125em;
}

.svg-inline {
  fill: currentColor;
}

.svg-inline-stroke {
  fill: none;
  stroke: currentColor;
}


/***==========================================
      variables
==========================================***/

:root {
  --body-color: rgb(34,34,34);/* ブログ背景色 */
  --base-font-color: rgb(51,51,51);/* 注)基本文字色 */
  --base-link-color: rgb(198,127,123);/* 注)基本リンク色 */
  --base-line-height: 1.5;
  --opposite-font-color: white;/* 濃色の反対色 */

  --navi-height-sp: 70px;
  --navi-height: 40px;

  --noimage-color: rgb(230,230,230);

  --side-range: 300px;/* サイドメニュー横幅 */
  --side-gap: 30px;/* サイドメニューとメインカラムの余白 */
  --side-bg-color: rgb(250,250,250);/* サイドメニュー背景色 */
  --side-font-color: rgb(100,100,100);/* サイドメニュー文字及びリンク色 */

  --content-font-color: rgb(120,120,120);/* グリッドなど文章文字色 */
  --box-color: rgb(245,245,245);
  --border-color: rgb(220,220,220);

  --input-bg-color: rgb(250,250,250);/* コメント投稿フォーム背景色 */
  --input-border-color: rgb(220,220,220);/* コメント投稿フォームボーダー色 */
  --placeholder-color: rgb(150,150,150);/* コメント投稿フォームプレースホルダー文字色 */
  --comment-title-font-size: 1.4rem;/* コメント一覧「名前」「タイトル」文字大きさ */
  --comment-body-font-size: 1.3rem;/* コメント一覧「本文」文字大きさ */

  --page-scroll-bg-color: rgba(255,255,255,.8);/* ページ内移動ボタン背景色 */
  --page-scroll-font-color: rgba(51,51,51,.6);/* ページ内移動ボタン文字色 */

  --overlay-bg-color: rgba(0,0,0,.8);/* カテゴリモーダル背景色 */
  --overlay-font-color: white;/* カテゴリモーダル文字色 */
  --overlay-placeholder: rgb(150,150,150);/* カテゴリプレースホルダー文字色 */

  --button-color: rgb(230,230,230);
  --hidden-text-color: rgb(200,200,200);
  --large-font-size: 1.4rem;
  --middle-font-size: 1.3rem;
  --small-font-size: 1.2rem;
  --ex-small-font-size: 1.1rem;
  --min-font-size: 1rem;
}


/***==========================================
      link
==========================================***/

a {
  text-decoration: none;
  color: var(--base-link-color);
  transition: .3s ease-in-out;
}


/***==========================================
      layout
==========================================***/

html {
  margin: 0;
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--base-font-color);
  background-color: var(--body-color);
  font: 1.6rem/var(--base-line-height) Helvetica, Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;/* 注)文字が細すぎると感じる方はこの一行削除(Mac Google Chromeのみ) 1/2 */
  -moz-osx-font-smoothing: grayscale;/* 注)文字が細すぎると感じる方はこの一行削除(Mac Firefoxのみ) 2/2 */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* lazyload */
.lazyloading{opacity:0}.lazyloaded{opacity:1;transition:opacity 1s}

#wrapper {
  display: flex;
  flex-direction: column;
  width: 95%;
  max-width: 1300px;
  min-height: 100vh;
  margin: auto;
}

@media screen and (min-width: 560px) {
  #wrapper {
    width: 90%;
    padding: 0;
  }
}

#main-container {
  width: 100%;
  margin: auto;
  padding: 0 0 80px;
}

#secondary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 15px;
  margin: 0 auto;
  font-size: var(--middle-font-size);
  line-height: 1.8;
}

.side_menu {
  margin-bottom: 15px;
  padding: 4%;
  border-radius: 5px;
  background: var(--side-bg-color);
  color: var(--content-font-color);
}

.side_menu a {
  color: var(--content-font-color);
}

.side_menu a:hover {
  color: var(--base-link-color);
}

@media screen and (min-width: 960px) {
  #main-container {
    display: flex;
    justify-content: space-between;
  }
  #primary {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - var(--side-range) - var(--side-gap));
    margin-right: var(--side-gap);
  }
  #secondary {
    display: block;
    width: var(--side-range);
    color: rgb(70,70,70);
    font-size: 1.3rem;
    line-height: 1.8;
    animation: slideInUp .8s;
  }
}

@media screen and (min-width: 960px) {
  .side_menu:last-of-type {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--navi-height) + 2px);
  }
}


/***==========================================
      header
==========================================***/

@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(15px)}100%{opacity:1;transform:translateY(0)}}
@keyframes slideInDown{0%{opacity:0;transform:translateY(-15px)}50%{opacity:0}100%{opacity:1;transform:translateY(0)}}


#header-banner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
  color: white;
  text-align: center;
}

#blog_title {
  visibility: hidden;
  margin: 0 auto 15px;
  padding: calc(194 / 923 * 100%) 0 calc(207 / 923 * 100%);
  background: url(https://blog-imgs-134-origin.fc2.com/v/a/n/vanillaice000/silkrose_top.png) top center /100% auto no-repeat,
              url(https://blog-imgs-134-origin.fc2.com/v/a/n/vanillaice000/silkrose_bottom.png) bottom center /100% auto no-repeat;
  color: var(--opposite-font-color);
  font: bold 1.8rem/1.4 Helvetica, Arial, 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  letter-spacing: 2px;
  text-indent: 2px;
  text-transform: uppercase;/* ブログタイトル大文字縛り解除この一行削除 */
}

.wf-active #blog_title {
  visibility: visible;
  font-family: 'Playfair Display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  animation: slideInUp 1.2s;
}

#blog_title-anchor {
  color: var(--opposite-font-color);
}

#site-desc,
#breadcrumbs {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  font-size: var(--small-font-size);
  animation: slideInDown 1.3s;
}


/***==========================================
      breadcrumbs
==========================================***/

.breadcrumbs-item {
  display: inline-block;
}

.breadcrumns-anchor {
  display: inline-block;
  padding: .1em .5em;
  border-radius: 4px;
  background: rgba(51,51,51);
  color: white;
  text-shadow: none;
}

.breadcrumns-anchor:hover {
  color: var(--base-link-color);
}

.breadcrumbs-arrow {
  margin: 0 .5em;
  vertical-align: top;
}


/***==========================================
      global navigation
==========================================***/

#navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background-color: rgb(20,20,20);
  font-size:var(--ex-small-font-size);
  line-height: var(--navi-height);
  letter-spacing: 1px;
  text-transform: uppercase;
}

#navi_menu {
  height: var(--navi-height);
  margin: auto;
  padding: 0 20px;
  transition-duration: .6s;
}

@media screen and (min-width: 768px) {
  #navi_menu {
    width: 95%;
    padding: 0;
  }
}
@media screen and (min-width: 1120px) {
  #navi_menu {
    width: 90%;
    max-width: 1300px;
  }
}

#navi_menu-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

#navi_menu-item-hamburger {
  height: var(--navi-height);
  color: var(--opposite-font-color);
}

.navi_menu-item,
#navi_menu-item-search {
  height: var(--navi-height-sp);
  color: var(--opposite-font-color);
}

#navi_menu-item-hamburger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.navi_menu-item-anchor {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--opposite-font-color);
  text-align: center;
}

#navi_menu-item-search {
  margin: auto;
  width: 90%;
  max-width: 380px;
}

#navi_menu-item-search-submit {
  display: none;
}

#navi_menu-item-search-btn {
  display: none;
}

#navi_menu-item-search-text {
  width: 100%;
  height: var(--navi-height);
  padding-left: 1em;
  border: none;
  background-color: white;
  color: var(--base-font-color);
  outline: none;
  cursor: auto;
}

#navi_menu-item-search-text::-webkit-input-placeholder {
  color: var(--base-font-color);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#navi_menu-item-search-text::-moz-placeholder {
  color: var(--base-font-color);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--navi-height);
  margin-left: auto;
  cursor: pointer;
}

#hamburger-bar {
  display: block;
  height: 2px;
  width: 26px;
  margin-left: auto;
  background-color: var(--opposite-font-color);
  transition: background .6s;
}

#hamburger-bar::before,
#hamburger-bar::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  background: var(--opposite-font-color);
  transition: transform .6s;
}

#hamburger-bar::before {
  margin-top: -8px;
}

#hamburger-bar::after {
  margin-top: 8px;
}

#navi-checkbox,
.sp-hide {
  display: none;
}

#navi-checkbox:not(:checked)~#navi_menu {
  overflow: hidden;
}

#navi-checkbox:checked~#navi_menu {
  height: 100vh;
  overflow: auto;
}

#navi-checkbox:checked + #navi_menu #hamburger-bar {
  background: transparent;
}

#navi-checkbox:checked + #navi_menu #hamburger-bar::before {
  transform: translateY(8px) rotate(225deg);
}

#navi-checkbox:checked + #navi_menu #hamburger-bar::after {
  transform: translateY(-8px) rotate(-225deg);
}

@media screen and (min-width:661px) {
  #hamburger {
    display: none;
  }
  .sp-hide {
    display: block;
  }
  #navi-checkbox:not(:checked)~#navi_menu {
    min-height: var(--navi-height);
    overflow: visible;
  }
  #navi-checkbox:checked~#navi_menu {
    height: var(--navi-height);
  }
  #navi_menu-list {
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
  }
  .navi_menu-item {
    position: relative;
    z-index: 3;
    text-align: center;
  }
  .navi_menu-item,
  #navi_menu-item-search {
    height: var(--navi-height);
  }
  .navi_menu-item-anchor {
    padding-left: 3rem;
  }
  #navi_menu-item-hamburger {
    margin-right: auto;
  }
  #navi_menu-item-search {
    width: calc(3rem + 3rem);
    margin: 0;
  }
  #navi_menu-item-search-btn {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    line-height: var(--navi-height);
    font-size: 1.5em;
  }
  #navi_menu-item-search-text {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    opacity: 0;
    width: 6rem;
    transition: .6s;
  }
  #navi_menu-item-search-text:focus {
    opacity: 1;
    width: 100%;
    border: 1px solid var(--base-font-color);
    cursor: text;
  }
}


/***==========================================
      top page grid
==========================================***/

#grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 15px;
  margin: 0 auto;
  font-size: var(--middle-font-size);
}

.grid-anchor {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: white;
}

.grid-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.grid-image-wrapper::before {
  content: "";
  display: block;
  padding-top: 57%;
}

.grid-image-scale {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .grid-image-scale {
    will-change: transform;
    transform-origin: left;
    transform: scale(1.2) translate(0,0);
    transition: transform .6s;
  }
  .grid-anchor::before {
    content: "READ MORE";
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6);
    font: 1.6rem/1 'Playfair Display', serif;
    transition: opacity .6s
  }
  .grid-anchor:hover {
    color: white;
  }
  .grid-anchor:hover .grid-image-scale {
    transform: scale(1.2) translate(-15%, 0);
  }
  .grid-anchor:hover::before {
    opacity: 1;
  }
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-noimage {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--noimage-color);
  color: var(--content-font-color);
  font-family: 'Playfair Display', serif;
}

.grid-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 15px 20px;
  color: var(--content-font-color);
}

.grid-title {
  width: 100%;
  margin: 0 auto 10px;
  font-size: 1.5rem;
  color: rgb(51,51,51);
}

.grid-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(var(--middle-font-size) * var(--base-line-height) * 3);
  width: 100%;
  margin: 10px auto;
  overflow: hidden;
  color: var(--content-font-color);
  font-size: var(--middle-font-size);
}

.grid-info {
  overflow: hidden;
  margin: auto 0 0;
  font-size: var(--ex-small-font-size);
}

.grid-category {
  float: left;
}

.grid-comment {
  float: right;
}


/***==========================================
      article
==========================================***/

.main-body {
  margin-bottom: 40px;
  padding: 4%;
  border-radius: 5px;
  background: white;
}

#entry_header {
  font-size: var(--ex-small-font-size);
}

#entry_header-title {
  display: inline;
  font-size: 1.8rem;
}

#entry_header-box {
  margin: 10px 0 0;
  padding: .5em 0;
  border-top: 1px dotted var(--border-color);
  border-bottom: 1px dotted var(--border-color);
}

#entry_header-datetime,
#entry_header-modifiedtime,
#entry_header-category,
#entry_header-comment {
  display: inline-block;
}

#entry_header-modifiedtime,
#entry_header-comment {
  margin-left: 1em;
}

.entry_tag-link {
  display: inline-block;
  margin-right: 1em;
}

.contents {
  margin: 20px 0;
  font-size: var(--large-font-size);
}

.height-adjust {
  margin-top: calc(var(--navi-height) * -1);
  padding-top: var(--navi-height);
}

.inner-contents {
  position: relative;
  z-index: 1;
  line-height: 1.7;/* 注)記事行間 */
  margin: 20px 0;
}

/* back to default */
.inner-contents p {
  margin: 1.7em 0;/* 注)段落間上下余白 */
}

.inner-contents ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}

.inner-contents ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}

.inner-contents h2 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1.2em;
}
.inner-contents h3 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1.1em;
}
.inner-contents h4 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1em;
}

.inner-contents a:hover {
  text-decoration: underline;
}

/* footer */
#entry_footer {
  font-size: var(--small-font-size);
}

/* ユーザータグ(外部) タグポータル移動 */
#external-tag {
  margin: 0 0 30px;
}

#external-tag a:not(:last-of-type) {
  margin-right: .3em;
}

#external-tag a::before {
  content: "#";
}

#external-tag a {
  display: inline-block;
  margin-bottom: .5em;
  padding: .3em .8em;
  border-radius: 2px;
  background: var(--box-color);
}

/* SNSシェア */
#entry_footer-snslist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.entry_footer-snsitem {
  flex: 1 1 0;
  height: 45px;
}

.entry_footer-snsitem-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  filter: brightness(90%);
}

.entry_footer-snsitem-anchor:hover {
  filter: brightness(100%);
}

.hatena {
  font-weight: 700;
  font-family: 'Verdana', sans-serif;
}

#e-facebook {
  background: rgb(59,89,152);
}
#e-twitter {
  background: rgb(85,172,238);
}
#e-pinterest {
  background: rgb(206,15,25);
}
#e-hatena {
  background: rgb(61,142,216);
}

/* author */
#author_block {
  padding: 20px;
  border-radius: 5px;
  background: var(--box-color);
}

#author_block-pic-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

#author_block-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

#author_block-name {
  display: inline-block;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: var(--middle-font-size);
}

#author_block-desc {
  margin: 0;
}

@media screen and (min-width: 560px) {
  #author_block {
    display: flex;
    align-items: flex-start;
  }
  #author_block-pic-wrapper {
    margin: 0 30px 0 0;
  }
  #author_block-desc {
    flex: 1;
    min-width: 0;
  }
}


/* ===========================================
      関連記事リスト list of related articles
=========================================== */

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  position: relative;
  margin: 50px auto 30px;
  padding: 0;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 0 10px;
  position: relative;
  background: transparent;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li,
#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  height: 100px;
  padding: 10px 0;
  border-bottom: 1px dotted var(--border-color);
  white-space: normal;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li::before,
#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink::before {
  left: 0;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li::after,
#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink::after {
  right: 0;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink .relate_entry_title_text::before,
.fc2relate_entry_thumbnail_off .relate_li_nolink::before {
  content: "【現在閲覧中】";
}

#fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
  display: block;
  width: 80px;
  height: 80px;
  padding: 0;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img,
#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail .relate_entry_thumbnail_noimg {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

#fc2relate_entry_thumbnail_area .relate_entry_title {
  display: block;
  flex: 1;
  min-width: 0;
  padding: 0 1em;
}

.fc2relate_entry_thumbnail_on::before {
  content: "You may also like";
  display: block;
  margin-bottom: 20px;
  font: bold var(--large-font-size)/1.5 'Playfair Display', serif;
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
  text-transform: uppercase;
}

.fc2relate_entry_thumbnail_on .relate_dt {
  display: none;
}

/* without thumbnail ★relate_ul・font-size:mediumに指定した*/
.relate_dl,
.tb_dl {
  margin-top: 20px;
  border-radius: 2px;
  letter-spacing: normal;
  padding: 10px;
}

.relate_dt {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: var(--large-font-size);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

.date {
  padding-top: 10px;
}

.relate_ul {
  padding: 10px;
  background: var(--box-color);
  font-size: var(--ex-medium-font-size);
}

.relate_dl a {
  color: var(--side-font-color);
}

.relate_dl a:hover {
  text-decoration: underline;
}


/***==========================================
      posted comment
==========================================***/

/* Index, Comment などタイトル */
.another-title {
  visibility: hidden;
  margin: 0 auto 20px;
  font: bold var(--large-font-size)/1.5 'Playfair Display', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
  text-transform: uppercase;
}

.wf-active .another-title {
  visibility: visible;
  animation: slideInUp .6s;
}

#another-title-span {
  margin-left: .5em;
  font-weight: normal;
  font-size: var(--middle-font-size);
}

.comment-number {
  display: none;
}

.comment-number0 {
  display: block;
  margin-bottom: 20px;
  color: var(--hidden-text-color);
  font-style: italic;
  text-align: center;
}

.border-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 46px;
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: var(--button-color);
  color: var(--base-font-color);
  font-size: 1.8rem;
}

.author-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.useranchor {
  display: inline-block;
}

.useranchor::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .6em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='none' stroke='rgb(198,127,123)' stroke-miterlimit='10' stroke-width='4' d='M30 62h32V2H2v32' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Cpath fill='none' stroke='rgb(198,127,123)' stroke-miterlimit='10' stroke-width='4' d='M26 56V38H8m18 0L2 62' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E") center center /cover no-repeat;
  vertical-align: -.13em;
}

.visitor-name-and-title {
  flex: 1;
  font-weight: bold;
}

.comment-body {
  margin: 1em 0 1em 23px;
  padding: 1em;
  border-radius: 5px;
  background: var(--box-color);
  font-size: var(--large-font-size);
}

.comment-info {
  font-size: var(--small-font-size);
  text-align: right;
}

.comment_btn-item {
  display: inline-block;
  margin: 5px 0 0 5px;
}

.comment_btn-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--button-color);
  color: var(--base-font-color);
}

.comment_btn-anchor:hover {
  background: var(--base-link-color);
  color: white;
}


/***==========================================
      comment form
==========================================***/

#comment_form {
  padding-top: var(--navi-height);
}

.division {
  display: flex;
  justify-content: space-between;
}

.apply,
.half {
  display: block;
  margin-bottom: 20px;
  padding: .6em;
  border-radius: 5px;
  border: 1px solid var(--input-border-color);
  background: var(--input-bg-color);
  color: var(--base-font-color);
  outline: none;
  -webkit-appearance: none;
}

.apply {
  width: 100%;
}

.half {
  width: calc(50% - 7px);
}

.apply:focus,
.half:focus {
  border-color: var(--base-font-color);
  background: white;
}

#form-btn {
  max-width: 500px;
  margin: 30px 0 20px;
}

#comment {
  min-height: 200px;
  line-height: 1.5;
}

#comment_form input {
  filter: none;
}

#comment_form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--input-bg-color) inset;
}

#comment_form input::-webkit-input-placeholder,
#comment_form textarea::-webkit-input-placeholder {
  color: rgba(51,51,51,.7);
  font-size: var(--ex-small-font-size);
  font-family: Helvetica, Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
}

#comment_form input::-moz-placeholder,
#comment_form textarea::-moz-placeholder {
  color: rgba(51,51,51,.7);
  font-size: var(--ex-small-font-size);
  font-family: Helvetica, Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
}

/* checkbox */
#no-p input:focus {
  outline: none;
}

#no-p input[type=checkbox] {
  display: inline-block;
  margin: 0 6px 0 0;
}
#no-p input[type=checkbox] + label {
  display: inline-block;
  margin: 0 12px 0 0;
  cursor: pointer;
  line-height: 1.5px;
  position: relative;
  left: 0;
}

#secret-label {
  font-size: var(--small-font-size);
  letter-spacing: 1px;
}
 
@media (min-width: 1px) {
  #no-p input[type=checkbox] {
    display: none;
    margin: 0;
  }

  #no-p input[type=checkbox] + label {
    padding: 2px 0 0 28px;
  }

  #no-p input[type=checkbox] + label:before {
    content: "";
    display: block;
    margin: -10px 0 0;
    width: 18px;
    height: 18px;
    background: white;
    position: absolute;
    top: 50%;
    left: 0;
  }

  #no-p input[type=checkbox] + label:before {
    border: 1px solid var(--base-font-color);/* 注)secretコメントチェックボックスボーダー色 */
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
  }

  #no-p input[type=radio]:checked + label:after {
    margin: -4px 0 0;
    width: 8px;
    height: 8px;
    background: var(--base-font-color);/* 注)secretコメントチェックマーク色 1/3 */
    border-radius: 8px;
    top: 2px;
    left: 5px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    margin: -8px 0 0;
    width: 16px;
    height: 8px;
    border-bottom: 3px solid var(--base-font-color);/* 注)secretコメントチェックマーク色 2/3 */
    border-left: 3px solid var(--base-font-color);/* 注)secretコメントチェックマーク色 3/3 */
    left: 3px;
    transform: rotate(-45deg);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 7px);
  height: 40px;
  border-radius: 5px;
  border: 0;
  background: var(--button-color);
  color: var(--base-font-color);
  font-size: var(--small-font-size);
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  background: var(--base-link-color);
  color: white;
}


/***==========================================
      trackback
==========================================***/

#op,
#for-trackback-word {
  display: block;
  width: 100%;
}

#op {
  margin: 10px auto 0;
  padding: 1em .6em;
  border-radius: 0;
  border: 1px solid var(--input-border-color);
  background: var(--input-bg-color);
  color: var(--base-font-color);
  font-size: var(--small-font-size);
  outline: none;
  -webkit-appearance: none;
}

#for-trackback-word {
  font-size: var(--small-font-size);
}

.tb-title {
  display: block;
  margin-top: 15px;
  color: var(--base-font-color);
  font-weight: bold;
  font-size: var(--middle-font-size);
}

.tb-desc {
  margin: 1em 0;
  font-size: var(--small-font-size);
}

.tb-date {
  color: var(--border-color);
  font-size: var(--small-font-size);
  text-align: right;
}

.tb-date:not(:last-of-type) {
  border-bottom: 1px dotted var(--border-color);
}


/***==========================================
      index (title list), search page
==========================================***/

/* no item */
.hit-number {
  display: none;
  color: var(--hidden-text-color);
  line-height: 1.1;
  padding: 20px 0;
  text-align: center;
  font-size: 60px;
}

.hit0 {
  display: block;
}

.index-contents {
  padding: 15px 0;
  border-bottom: 1px dotted var(--border-color);
  color: var(--content-font-color);
}

.index-contents:last-of-type {
  border: 0;
}

.index_info {
  padding-bottom: 15px;
  overflow: hidden;
}

.index_info-title {
  float: left;
  margin: auto;
  font-weight: 700;
}

.index_info-title-anchor {
  color: var(--base-font-color);
}

.index_info-date {
  float: right;
  margin-top: 4px;
  margin-left: 1.5em;
  font-size: var(--small-font-size);
}

.index_info-date .svg-inline {
  margin-left: 1em;
}

.search-content {
  overflow: hidden;
  margin-bottom: 10px;
}

.thumbnails {
  float: right;
  width: 150px;
  height: 100px;
  margin-left: 15px;
}

.thumbnails-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.thumbnails-noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--noimage-color);
  color: var(--content-font-color);
  font: var(--ex-small-font-size)/1 'Playfair Display', serif;
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

.search-desc {
  font-size: var(--large-font-size);
}

.index-category-anchor {
  display: inline-block;
  padding: .2em .6em;
  border-radius: 5px;
  background: var(--box-color);
  color: var(--base-font-color);
  font-size: var(--small-font-size);
}

.index-category-anchor:hover {
  background: var(--base-link-color);
  color: white;
}


/***==========================================
      side menu(secondary)
==========================================***/

.side_menu ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

.side_menu-heading {
  padding-bottom: .3em;
  margin: 0 auto 20px;
  color: var(--base-font-color);
  font: bold var(--middle-font-size)/1.5 'Playfair Display', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}

/* profile */
#side_prof {
  margin-bottom: 15px;
}

#side_prof-wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 50%;
}

#side_prof-wrapper::before {
  content: "";
  display: block;
  padding-top: 100%;
}

#side_prof-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

#side_prof-name {
  display: inline-block;
  margin-bottom: .5em;
  font-weight: bold;
}

#side_prof-desc {
  font-size: var(--small-font-size);
  line-height: 1.5;
}

#side_prof-snslist {
  margin: 15px 0;
  text-align: center;
}

.side_prof-snsitem {
  display: inline-block;
  margin: 0 5px 5px;
}

.side_prof-snsitem-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: var(--small-font-size);
}

@media screen and (min-width: 769px) {
  .side_prof-snsitem-anchor {
    filter: brightness(90%);
  }
  .side_prof-snsitem-anchor:hover {
    filter: brightness(100%);
  }
}

#s-facebook {
  background: rgb(59,89,152);
  color: white;
}
#s-twitter {
  background: rgb(85,172,238);
  color: white;
}
#s-pinterest {
  background: rgb(206,15,25);
  color: white;
}
#s-instagram {
  background: rgb(62,114,155);
  color: white;
}

/* copy button */
#blog-uri {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 15px;
  height: 40px;
  border-radius: 5px;
  border: 0;
  background: var(--body-color);
  color: var(--opposite-font-color);
  cursor: pointer;
  -webkit-appearance: none;
}

/* clipboard tooltip */
@keyframes toolTip{to{opacity:0}}
.tooltip::before {
  content: "Copied";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: calc(100% + 4px);
  border-radius: 3px;
  padding: .4em;
  background: rgb(51,51,51);
  color: white;
  font-size: 12px;
  white-space: nowrap;
  animation: toolTip .5s 1s 1 forwards;
}
.tooltip::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 100%;
  left: 6px;
  bottom: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: rgb(51,51,51) transparent transparent transparent;
  white-space: nowrap;
  animation: toolTip .5s 1s 1 forwards;
}


/***==========================================
      official plug-in
==========================================***/

/* calendar */
.calender {
  margin: 0 auto;
  table-layout: fixed;
  width: 100%;
  text-align: center;
  font-size: 12px;
  border-spacing: 3px 6px;
}

.calender caption {
  margin-bottom: 10px;
  width: 100%;
}

.calender caption a {
  display: inline-block;
  width: 20%;
}

#sun {
  color: rgb(189,30,30);
}

#sat {
  color: rgb(49,70,187);
}

.calender td {
  height: 30px;
  line-height: 30px;
  padding: 0;
}

.calender td a {
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  line-height: 28px;
}

.calender td a:hover {
  border-color: var(--base-link-color);
  background: var(--base-link-color);
  color: white;
  text-decoration: none;
}

/* mail form */
.side_menu-style form {
  display: block;
  margin: 0 auto;
}

.plugin-mail input:not([type="submit"]),
.plugin-mail textarea,
.plugin-search input:not([type="submit"]),
.plugin-serach textarea {
  display: inline-block;
  width: 100% !important;
  padding: .5em;
  border-radius: 1px;
  border: 1px solid var(--input-border-color);
  background: var(--input-bg-color);
  outline: none;
  -webkit-appearance: none;
}

.plugin-mail input[type="submit"],
.plugin-search input[type="submit"] {
  background-color: var(--button-color);
  border-radius: 1px;
  border: 0;
  color: var(--base-font-color);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* search */
.plugin-search {
  margin: 0 auto;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 0 2px 3px 0;
  border-radius: 3px;
  border: 1px solid var(--border-color);/* 注)個別記事下tagボーダー色 */
  padding: .1em 1em;
  font-size: var(--ex-small-font-size);
}

.plugin-tag a:hover {
  border-color: var(--base-link-color);
  background-color: var(--base-link-color);/* 注)個別記事下tagホバー時背景色 */
  color: white;
  text-decoration: none;
}

.plugin-myimage {
  margin: 0 auto 15px;
  text-align: center !important;
}


/***==========================================
      pager
==========================================***/

/* general */
#general_pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 70px auto;
  color: var(--base-font-color);
  font-size: var(--ex-small-font-size);
  font-family: 'Times New Roman', serif;
}

#general_pager-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.general_pager-item  {
  width: 32px;
  height: 32px;
  margin: 0 0 3px -1px;
}

#current,
.general_pager-item-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(220,220,220);
  background: rgb(240,240,240);
  color: var(--base-font-color);
}

#current {
  border: 0;
  background-color: rgb(200,200,200);
}

.general_pager-item-anchor:hover {
  border-color: var(--base-link-color);
  background: var(--base-link-color);
  color: var(--opposite-font-color);
}

.general_pager-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 3px;
  background: var(--base-link-color);
  color: white;
  filter: brightness(80%);
}

.general_pager-anchor:hover {
  opacity: 1;
  color: white;
  filter: brightness(100%);
}

/* article, titlelist */
#entry_pager {
  margin: 70px auto;
  font-size: var(--small-font-size);
}

#entry_pager-title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: var(--middle-font-size);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

.entry_pager-list {
  margin: 0 auto 40px;
}

.entry_pager-item {
  margin-bottom: 15px;
}

@media screen and (min-width: 580px) {
  .entry_pager-list {
    display: flex;
    justify-content: space-between;
  }
  .entry_pager-item {
    width: calc(50% - 5px);
  }
}

.entry_pager-item-anchor {
  display: flex;
  color: var(--content-font-color);
}

.entry_pager-item-anchor:hover {
  color: var(--base-font-color);
}

#entry_pager-prev-image,
#entry_pager-prev-cate-image {
  position: relative;
  width: 90px;
  height: 90px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#entry_pager-next-image,
#entry_pager-next-cate-image {
  position: relative;
  width: 90px;
  height: 90px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.entry_pager-prev,
.entry_pager-next {
  flex: 1;
  min-width: 0;
  padding: 1em;
  background: white;
}

.entry_pager-prev,
#entry_pager-next-image,
#entry_pager-next-cate-image {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.entry_pager-next,
#entry_pager-prev-image,
#entry_pager-prev-cate-image {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  text-align: right;
}

.entry_pager-prev-text,
.entry_pager-next-text {
  position: relative;
  z-index: 3;
  padding: 0 0 10px;
  font-family: 'Playfair Display', serif;
}

.svg-inline-caret-left {
  margin: 0 1em 0 0;
}

.svg-inline-caret-right {
  margin: 0 0 0 1em;
}

.entry_pager-prev-title,
.entry_pager-next-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: calc(var(--small-font-size) * var(--base-line-height) * 2);
  overflow: hidden;
}

/* titlelist */
#titlelist_pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 70px auto;
  max-width: 400px;
  font-family: 'Times New Roman', serif;
  font-size: 12px;
}

#titlelist_pager-prev,
#titlelist_pager-home,
#titlelist_pager-next {
  width: 33px;
  height: 33px;
}

#titlelist_pager-prev-anchor,
#titlelist_pager-home-anchor,
#titlelist_pager-next-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--base-link-color);
  color: white;
}

#titlelist_pager-prev-anchor:hover,
#titlelist_pager-home-anchor:hover,
#titlelist_pager-next-anchor:hover {
  background: var(--base-link-color);
}

@media screen and (min-width: 960px) {
  #general_pager,
  #entry_pager,
  #titlelist_pager {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--navi-height) + 10px);
  }
}


/***==========================================
      footer
==========================================***/

#page_scroll {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 8px;
  z-index: 2000;
  font-size: 11px;
  font-family: 'Playfair Display', serif;
  text-align: center;
  animation: slideInUp .8s;
}

.page_scroll-anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  box-shadow: 0px 2px 7px 0px rgba(0,0,0,.1);
  border-radius: 50%;
  background: var(--page-scroll-bg-color);
  color: var(--page-scroll-font-color);
}

.page_scroll-anchor:hover {
  color: var(--page-scroll-font-color);
}

@media screen and (min-width: 960px) {
  #page_scroll {
    right: 30px;
    bottom: 80px;
  }
  #pagemiddle {
    display: none;
  }
}

#footer {
  margin-top: auto;
  padding: 1em 0;
  color: var(--content-font-color);
  line-height: 1.4;
  text-align: center;
}

.foot,
#copyright {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

#ad1,
#ad2 {
  font-size: 1.1rem;
}

/* animation */
@keyframes blink{0%{opacity:0}100%{opacity:1}}

.new {
  margin-left: .6em;
  color: red;
  font-weight: normal;
  font-size: 10px;
  animation: blink 1s ease-in-out infinite alternate;
}

.grid-ribbon.new {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 12px;
  width: 36px;
  height: 42px;
  margin: 0;
  background-image: radial-gradient(circle farthest-side at center top,rgb(225,0,0) 0%,rgb(153,0,0) 100%);
  color: white;
  writing-mode: vertical-rl;
  animation: none;
}

.grid-ribbon.new::before {
  content: "";
  display: block;
  position: absolute;
  top: 42px;
  right: 18px;
  width: 0;
  height: 0;
  border-top: 18px solid rgb(153,0,0);
  border-right: 18px solid transparent;
}

.grid-ribbon.new::after {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 18px solid rgb(153,0,0);
  border-left: 18px solid transparent;
}


/* ===========================================
      カテゴリモーダル modal
=========================================== */

#category-modal-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -999;
  width: 100%;
  height: 100%;
  background: var(--overlay-bg-color);
  color: var(--overlay-font-color);
  line-height: 1.9;
  text-align:center;
  transform: scale(.8);
  transition: .75s;
}

#category-modal-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 100px;
}

#category-modal-wrap {
  padding-top: 80px;
}

#category-modal-close-label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  letter-spacing: 2px;
  text-indent: 2px;
  cursor: pointer;
}

#category-modal-close-label span {
  position: relative;
  top: 30px;
  font-family: Playfair Display, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  transform: translateY(-30px);
}

#category-modal-trigger {
  display: none;
}

#category-modal-trigger-label {
  cursor: pointer;
}

#category-modal-trigger:checked ~ #category-modal-overlay {
  opacity: 1;
  z-index: 100005;
  transform: scale(1);
}

#scroll-content {
  position: relative;
  z-index: 3;
  width: calc(100% - 60px);
  max-width: 450px;
  max-height: 50vh;
  margin: auto;
  overflow-x: hidden;
  overflow-y: hidden;
  text-align: left;
  -webkit-overflow-scrolling: touch;
}

#category-modal-trigger:checked ~ #category-modal-overlay #scroll-content {
  overflow-y: auto; 
}

#scroll-content a {
  color: var(--overlay-font-color);
}


/***==========================================
      element
==========================================***/

blockquote {
  margin: 2rem 0;
  padding: 5rem 2rem 2rem;
  border-radius: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='rgb(200,200,200)'%3E%3Cpath d='M464 256h-80v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8c-88.4 0-160 71.6-160 160v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48zm-288 0H96v-64c0-35.3 28.7-64 64-64h8c13.3 0 24-10.7 24-24V56c0-13.3-10.7-24-24-24h-8C71.6 32 0 103.6 0 192v240c0 26.5 21.5 48 48 48h128c26.5 0 48-21.5 48-48V304c0-26.5-21.5-48-48-48z'/%3E%3C/svg%3E") 2rem 1rem /3.5rem 3.5rem no-repeat var(--box-color);/* 注)引用マークの色変更は rgb(200,200,200) を変更 */
}

blockquote p:first-of-type {
  margin-top: 0;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

blockquote cite {
  display: block;
  position: relative;
  margin-top: 2rem;
  padding-top: 1rem;
  font-style: italic;
  text-align: right;
}

blockquote cite::before {
  content: "\2500";
  margin-right: .3em;
}

blockquote cite::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background: var(--hidden-text-color);
}

pre {
  padding: 1em;
  background: rgb(51,51,51);
  color: white;
  font-size: .9em;
}

mark {
  background: linear-gradient(transparent 60%, yellow 60%);
  font-weight: bold;
}


/***==========================================
      recent thumbnail
==========================================***/

.recent-anchor {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dotted var(--border-color);
  line-height: 1.3;
}

.recent-anchor:last-of-type {
  border-bottom: 0;
}

.recent-image-wrapper {
  width: 72px;
  height: 72px;
  overflow: hidden;
  font-size: var(--ex-small-font-size);
}

.recent-image {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.recent-noimage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--box-color);
  font: var(--min-font-size)/1 'Playfair Display', serif;
}

.recent-content {
  flex: 1;
  min-width: 0;
  padding-left: 12px;
  word-break: break-all;
}

.recent-title {
  margin-bottom: 5px;
}

.recent-date {
  font-size: .8em;
}


/***==========================================
      personal settings
==========================================***/

.freehand {
  border: 3px solid rgb(230,230,230);
  border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
  padding: .5em .75em;
  font-weight: bold;
}

.dogear {
  position: relative;
  padding: .5em .75em;
  background: rgb(240,240,240);
  color: rgb(51,51,51);
  font-weight: bold;
}

.dogear:after {
  content: "";
  width: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: white white rgb(221,221,221) rgb(221,221,221);/* white is the same color of the background */
  box-shadow: -1px 1px 2px rgba(0,0,0,.1);
  position: absolute;
  top: 0;
  right: 0;
}

.curl {
  background: rgb(240,240,240);
  padding: .5em .75em;
  position: relative;
  font-size: 15px;
  font-weight: bold;
}

.curl:before,
.curl:after {
  content: "";
  width: 30%;
  height: 50%;
  position: absolute;
  bottom: 8px;
  z-index: -1;
  box-shadow: 0 10px 15px rgba(0,0,0,.2);
}

.curl:before {
  left: .3em;
  transform: rotate(-3deg);
}

.curl:after {
  right: .3em;
  transform: rotate(3deg);
}

/* for video */
.box-for-video {
  position: relative;
  width: 100%;
}

.box-for-video:before {
  content:"";
  display: block;
  padding-top: 56.25%;
  overflow: hidden;
}

.box-for-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* emoji */
.emoji {
  vertical-align: middle;
}

/* shadow for image */
.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2);/* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}