@charset "utf-8";

/**
* Author: Vanillaice (Akira) - https://vanillaice000.blog.fc2.com/
* Website skin name: BigGirlNoCry
* The first edition: 2020.1.6
*/

/***==========================================
      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;filter:none}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;
}

.svg-margin {
  margin-left: .5em;
}


/***==========================================
      variables 注)主要カスタマイズ
==========================================***/

:root {
  --width-main-container: 94%;/* メイン+サイド横幅(スマホ) */
  --width-header: 28%;/* ヘッダー横幅(ブラウズサイズ1500px以内) */
  --width-main: 72%;/* メインカラム横幅(ブラウズサイズ1500px以内) */

  --height-navi-sp: 70px;/* グローバルナビ スマホ閲覧時リンクの高さ(縦サイズ) */
  --height-navi: 40px;/* グローバルナビ高さ */

  --gap: 50px;/* ヘッダーとメインカラムの余白 */

  --bgcolor-body: rgb(250,250,250);/* ブログ背景色 */
  --bgcolor-header: rgb(244,240,232);/* ヘッダー背景色 */
  --bgcolor-noimage: rgb(230,230,230);/* no image背景色 */
  --bgcolor-box: rgb(240,240,240);
  --bgcolor-input: white;/* コメント投稿フォーム背景色 */
  --bgcolor-overlay: rgba(0,0,0,.8);/* カテゴリモーダル背景色 */
  --bgcolor-overlay-close: rgb(20,20,20);/* カテゴリモーダルclose背景色 */
  --bgcolor-button: rgb(230,230,230);
  --bgcolor-page-scroll: rgba(255,255,255,.8);/* ページ内移動ボタン背景色 */

  --color-base: rgb(51,51,51);/* 基本文字色 */
  --color-base-link: rgb(129,134,155);/* 基本リンク色 */
  --color-navi: rgb(51,51,51);/* ナビ内テキスト及びリンク色 */
  --color-opposite: white;/* 濃色の反対色 */
  --color-content: rgb(120,120,120);
  --color-side: rgb(100,100,100);/* サイドメニュー文字及びリンク色 */
  --color-content: rgb(120,120,120);/* グリッドなど文章文字色 */
  --color-hidden-text: rgb(200,200,200);
  --color-placeholder: rgb(150,150,150);/* コメント投稿フォームプレースホルダー文字色 */
  --color-overlay: white;/* カテゴリモーダル文字色 */
  --color-page-scroll: rgba(51,51,51,.6);/* ページ内移動ボタン文字色 */

  --polka-dots: radial-gradient(rgb(120,120,120) 20%, transparent 0);/* 水玉の色 */
  --black-polka: rgb(20,20,20);/* 水玉黒背景 */
  --white-polka: rgb(233,225,210);/* 水玉白背景 */

  --line_height-base: 1.5;/* 基本行間 */
  --line_height-entry: 1.7;/* 記事行間 */
  --line_height-side: 1.8;/* サイドメニュー行間 */

  --font_size-base: 1.6rem;/* 記事フォントサイズ */
  --font_size-blog-title: 1.8rem;/* ブログタイトルフォントサイズ */
  --font_size-another-title: 1.8rem;/* comment, indexなどタイトル */
  --font_size-side: 1.3rem;/* サイドメニューフォントサイズ */
  --font_size-comment-title: 1.4rem;/* コメント一覧「名前」「タイトル」文字大きさ */
  --font_size-comment-body: 1.3rem;/* コメント一覧「本文」文字大きさ */

  --border_color: rgb(220,220,220);
  --border_color-input: rgb(220,220,220);

  --font_size-large: 1.4rem;
  --font_size-middle: 1.3rem;
  --font_size-small: 1.2rem;
  --font_size-ex-small: 1.1rem;
  --font_size-min: 1rem;
}


@media screen and (min-width: 560px) {
  :root {
    --width-main-container: 90%;
  }
}
@media screen and (min-width: 1500px) {
  :root {
    --width-header: 20%;
    --width-main: 80%;
  }
}


/***==========================================
      link
==========================================***/

a {
  text-decoration: none;
  color: var(--color-base-link);
  transition: .3s ease-in-out;
}


/***==========================================
      layout
==========================================***/

html {
  margin: 0;
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--color-base);
  background: var(--bgcolor-body);
  font: var(--font_size-base)/var(--line_height-base) 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}

/* prevent FOUT */
.wf-target {
  visibility: hidden;
}

.wf-active .wf-target {
  visibility: visible;
  font-family: 'Mountains Of Christmas', cursive;
  animation: fadeIn 1s;
}

#main-container {
  width: var(--width-main-container);
  margin: 0 auto;
  padding: 40px 0 0;
}

#secondary {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: 30px;
  font-size: var(--font_size-side);
  line-height: var(--line_height-side);
}

@media screen and (min-width: 960px) {
  #main-container {
    width: calc(var(--width-main) - var(--gap));
    margin: 0 0 0 calc(var(--width-header) + var(--gap));
    padding: 50px var(--gap) 0 0;
  }
}
@media screen and (min-width: 1500px) {
  #main-container {
    display: flex;
    justify-content: space-between;
  }
  #primary {
    width: 70%;
  }
  #secondary {
    display: block;
    width: calc(30% - var(--gap));
  }
  .side_menu {
    margin: 0 0 30px;
  }
}

.side_menu,
.side_menu a {
  color: var(--color-content);
}

.side_menu a:hover {
  color: var(--color-base-link);
}


/***==========================================
      header
==========================================***/

@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(15px)}100%{opacity:1;transform:translateY(0)}}
@keyframes jello{from,11.1%,to{transform:translate3d(0,0,0)}22.2%{transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{transform:skewX(6.25deg) skewY(6.25deg)}44.4%{transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}
@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}

#header-banner {
  padding: 80px 5% 50px;
  box-shadow: 0 10px 5px -3px rgba(0,0,0,.1);
  background: var(--bgcolor-header) url(https://blog-imgs-134.fc2.com/v/a/n/vanillaice000/BigGirlNoCry.png) bottom left /auto calc(100% - 45px) no-repeat;
  text-align: center;
  transition: filter .6s;
}

@media screen and (min-width: 960px) {
  #header-banner {
    display: flex;
    flex-flow: column;
    position: fixed;
    top: 0;
    left: 0;
    width: var(--width-header);
    height: 100vh;
    padding: 8% 20px 15%;
    box-shadow: 8px 0px 8px -1px rgba(0,0,0,.1);
    background-size: 50% auto;
  }
  #blog_title-container {
    margin-bottom: 15%;
  }
}

#blog_title {
  margin: 0 auto 40px;
  color: var(--color-base);
  font: bold var(--font_size-blog-title)/1.4 Arial, 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  letter-spacing: 2px;
  text-indent: 2px;
  text-transform: uppercase;/* ブログタイトル大文字縛り解除この一行削除 */
  animation: jello 1s;
}

#peekaboo {
  font-weight: bold;
  font-size: var(--font_size-large);
}

.ribbon {
  position: relative;
  overflow: hidden;
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  color: var(--color-opposite);
}

.black-ribbon,
.side-ribbon {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  min-height: 35px;
  padding: 0 1em;
  background-color: var(--black-polka);
  background-image: var(--polka-dots), var(--polka-dots);
}

#white-ribbon {
  z-index: 1;
  height: 35px;
  margin: -40px 0 30px;
  background-color: var(--white-polka);
  background-image: var(--polka-dots), var(--polka-dots);
  transform: rotate(-6deg);
}

.black-ribbon::before,
.black-ribbon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(-135deg, var(--bgcolor-header) 5px, transparent 0) 0 5px, linear-gradient(135deg, var(--bgcolor-header) 5px, var(--black-polka) 0) 0 5px;
  background-color: var(--bgcolor-body);
  background-size: 10px 10px;
  background-repeat: repeat-x;
}


.side-ribbon::before,
.side-ribbon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(-135deg, var(--bgcolor-body) 5px, transparent 0) 0 5px, linear-gradient(135deg, var(--bgcolor-body) 5px, var(--black-polka) 0) 0 5px;
  background-color: var(--bgcolor-body);
  background-size: 10px 10px;
  background-repeat: repeat-x;
}

#white-ribbon::before,
#white-ribbon::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(-135deg, var(--bgcolor-header) 5px, transparent 0) 0 5px, linear-gradient(135deg, var(--bgcolor-header) 5px, var(--white-polka) 0) 0 5px;
  background-color: var(--bgcolor-body);
  background-size: 10px 10px;
  background-repeat: repeat-x;
}

.black-ribbon::before,
.side-ribbon::before,
#white-ribbon::before {
  right: 5px;
  transform-origin: 12px 100%;
  transform: rotate(-90deg);
}

.black-ribbon::after,
.side-ribbon::after,
#white-ribbon::after {
  right: 5px;
  transform-origin: 100% 12px;
  transform: rotate(90deg);
}

#site-desc,
#breadcrumbs {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  font-size: var(--font_size-ex-small);
}


/***==========================================
      breadcrumbs
==========================================***/

.breadcrumbs-item {
  display: inline-block;
}

.breadcrumns-anchor {
  display: inline-block;
  margin-bottom: 2px;
  padding: .1em .5em;
  border-radius: 4px;
  background: var(--color-base);
  color: var(--color-opposite);
}

.breadcrumbs-arrow {
  margin: 0 .5em;
  vertical-align: top;
}


/***==========================================
      global navigation
==========================================***/

#navigation {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background: var(--bgcolor-header);
  line-height: var(--height-navi);
  letter-spacing: 1px;
  text-transform: uppercase;
}

#navi_menu {
  height: var(--height-navi);
  margin: auto;
  padding: 0 20px;
  transition: height .6s;
}

#navi_menu-list {
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin: auto;
  font-size: var(--font_size-small);
  letter-spacing: 1px;
  text-indent: 1px;
}

.navi_menu-item,
#navi_menu-item-search {
  height: var(--height-navi-sp);
  color: var(--color-navi);
}

#navi_menu-item-hamburger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--height-navi);
}

.navi_menu-item-anchor,
.open-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-navi);
  text-align: center;
}

.open-overlay {
  border-radius: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
}

#navi_menu-item-search {
  width: 90%;
  max-width: 380px;
  margin: auto;
}

#navi_menu-item-search-submit {
  display: none;
}

#navi_menu-item-search-text {
  width: 100%;
  height: var(--height-navi);
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--color-base);
  background: transparent 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(51,51,51)' stroke-miterlimit='10' stroke-width='4' d='M39.049 39.049L56 56' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Ccircle cx='27' cy='27' r='17' fill='none' stroke='rgb(51,51,51)' stroke-miterlimit='10' stroke-width='4' stroke-linejoin='round' stroke-linecap='round'%3E%3C/circle%3E%3C/svg%3E") center right /auto 1em no-repeat;
  color: var(--color-base);
  outline: none;
  cursor: auto;
}

#navi_menu-item-search-text::-webkit-input-placeholder {
  color: var(--color-base);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#navi_menu-item-search-text::-moz-placeholder {
  color: var(--color-base);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#navi_menu-item-search-text::placeholder {
  color: var(--color-base);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: var(--height-navi);
  margin-left: auto;
  cursor: pointer;
}

#hamburger-bar {
  display: block;
  height: 2px;
  width: 26px;
  margin-left: auto;
  background: var(--color-navi);
  transition: background .6s;
}

#hamburger-bar::before,
#hamburger-bar::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 26px;
  background: var(--color-navi);
  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: 960px) {
  #navigation {
    position: static;
    background: transparent;
  }
  #navi_menu {
    padding: 0;
  }
  .navi_menu-item,
  #navi_menu-item-search {
    height: var(--height-navi);
    margin-bottom: 1em;
  }
  .navi_menu-item-anchor:hover {
    animation: jello 1s;
  }
  #navi_menu-item-hamburger {
    display: none;
  }
  #hamburger-bar {
    display: none;
  }
  #hamburger-bar::before,
  #hamburger-bar::after {
    content: none;
  }
  .sp-hide {
    display: block;
  }
  #navi-checkbox:not(:checked)~#navi_menu {
    min-height: var(--height-navi);
    overflow: visible;
  }
  #navi-checkbox:checked~#navi_menu {
    height: var(--height-navi);
  }
}


/***==========================================
      top page grid
==========================================***/

#grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 5% 0 0;
}

/* ordinary */
.grid-item {
  position: relative;
  margin-bottom: 40px;
}

.grid-content {
  margin-top: auto;
  padding: 20px 0;
}

.grid-item:nth-of-type(odd) .grid-content {
  margin-right: auto;
  padding-right: 1em;
}

.grid-item:nth-of-type(even) .grid-content {
  margin-left: auto;
  padding-left: 1em;
  text-align: right;
}

/* 1st */
.grid-item:nth-of-type(6n+1) {
  width: 70%;
}
.grid-item:nth-of-type(6n+1) .grid-content {
  width: 71%;
}
/* 2nd */
.grid-item:nth-of-type(6n+2) {
  width: 50%;
  margin-left: -20%;
}
/* 3rd */
.grid-item:nth-of-type(6n+3) {
  z-index: 2;
  width: 50%;
}
/* 4th */
.grid-item:nth-of-type(6n+4) {
  width: 70%;
  margin-left: -20%;
}
.grid-item:nth-of-type(6n+4) .grid-content {
  width: 71%;
}
/* 5,6th */
.grid-item:nth-of-type(6n+5),
.grid-item:nth-of-type(6n+6) {
  width: 50%;
}

.grid-anchor {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 注)マウスオーバー反転不要の方ここから削除 */
.grid-anchor:hover .grid-image-adjust {
  filter: invert(1);
}
/* 注)マウスオーバー反転不要の方ここまで削除 */

.grid-image-wrapper {
  opacity: 0;/* 注)スクロールエフェクト不要の方この一行削除 2/3 */
  position: relative;
}

.grid-image-wrapper::before {
  content: "";
  display: block;
}

.grid-image-adjust-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.grid-image-adjust {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 8px 9px 13px 1px rgba(0,0,0,.1);
  border: 1px solid rgb(240,240,240);
  background: white;
  transition: filter .6s;
}

.grid-date {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--color-base);
  font-size: 4vw;
}

@media screen and (min-width: 960px) {
  .grid-date {
   font-size: 3rem;
  }
}

/* 1st */
.grid-item:nth-of-type(6n+1) .grid-image-wrapper {
  width: 94%;
}

.grid-item:nth-of-type(6n+1) .grid-image-wrapper::before {
  padding-top: 57%;
}

.grid-item:nth-of-type(6n+1) .grid-image-adjust {
  position: relative;
  padding: 2% 10%;
  transform-origin: 0 0;
  transform: rotate(-3deg);
}

.grid-item:nth-of-type(6n+1) .grid-date {
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  writing-mode: vertical-rl;
}

/* 2nd */
.grid-item:nth-of-type(6n+2) .grid-image-wrapper {
  width: 90%;
  margin-left: auto;
}

.grid-item:nth-of-type(6n+2) .grid-image-wrapper::before {
  padding-top: 100%;
}

.grid-item:nth-of-type(6n+2) .grid-image-adjust {
  padding: 2% 2% 13%;
}

.grid-item:nth-of-type(6n+2) .grid-date {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13%;
}

/* 3rd */
.grid-item:nth-of-type(6n+3) .grid-image-wrapper {
  z-index: 2;
  width: 88%;
}

.grid-item:nth-of-type(6n+3) .grid-image-wrapper::before {
  padding-top: 140%;
}

.grid-item:nth-of-type(6n+3) .grid-image-adjust {
  padding: 14% 3%;
  transform-origin: 0 100%;
  transform: rotate(1deg);
}

.grid-item:nth-of-type(6n+3) .grid-date {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10%;
}

/* 4th */
.grid-item:nth-of-type(6n+4) .grid-image-wrapper {
  width: 94%;
  margin: 20% 0 0 auto;
}

.grid-item:nth-of-type(6n+4) .grid-image-wrapper::before {
  padding-top: 57%;
}

.grid-item:nth-of-type(6n+4) .grid-image-adjust {
  padding: 2% 10%;
}

.grid-item:nth-of-type(6n+4) .grid-date {
  right: 0;
  top: 0;
  width: 10%;
  height: 100%;
  writing-mode: vertical-rl;
}

/* 5th */
.grid-item:nth-of-type(6n+5) .grid-image-wrapper {
  width: 93%;
  margin-top: 2%;
}

.grid-item:nth-of-type(6n+5) .grid-image-wrapper::before {
  padding-top: 100%;
}

.grid-item:nth-of-type(6n+5) .grid-image-adjust {
  padding: 2% 2% 13%;
  transform-origin: 0 0;
  transform: rotate(-1deg);
}

.grid-item:nth-of-type(6n+5) .grid-date {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13%;
}

/* 6th */
.grid-item:nth-of-type(6n+6) .grid-image-wrapper {
  width: 93%;
  margin-left: auto;
}

.grid-item:nth-of-type(6n+6) .grid-image-wrapper::before {
  padding-top: 100%;
}

.grid-item:nth-of-type(6n+6) .grid-image-adjust {
  padding: 2% 2% 13%;
  transform-origin: 100% 0;
  transform: rotate(4deg);
}

.grid-item:nth-of-type(6n+6) .grid-date {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 13%;
}

/* 注)スクロールエフェクト不要の方ここから削除 3/3 */
@keyframes animRight{0%{opacity:0;transform:translateX(30px)}100%{opacity:1;transform:translateX(0)}}
@keyframes animLeft{0%{opacity:0;transform:translateX(-30px)}100%{opacity:1;transform:translateX(0)}}
@keyframes animTop{0%{opacity:0;transform:translateY(-30px)}100%{opacity:1;transform:translateY(0)}}
@keyframes animBottom{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

.grid-item:nth-of-type(6n+1) .anim {
  animation: animLeft .7s forwards;
}
.grid-item:nth-of-type(6n+2) .anim {
  animation: animBottom .7s .3s forwards;
}
.grid-item:nth-of-type(6n+3) .anim {
  animation: animTop .7s .3s forwards;
}
.grid-item:nth-of-type(6n+4) .anim {
  animation: animRight .7s forwards;
}
.grid-item:nth-of-type(6n+5) .anim {
  animation: animBottom .7s .3s forwards;
}
.grid-item:nth-of-type(6n+6) .anim {
  animation: animBottom .7s forwards;
}
/* 注)スクロールエフェクト不要の方ここから削除 3/3 */

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-noimage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bgcolor-noimage);
  color: var(--color-content);
  font-size: var(--font_size-min);
}

@media screen and (min-width: 768px) {
  .grid-noimage {
    font-size: 1vw;
  }
}
@media screen and (min-width: 960px) {
  .grid-noimage {
    font-size: var(--font_size-large);
  }
}

.grid-title {
  margin: 0 auto 10px;
  color: var(--color-base);
  font-weight: bold;
  font-size: var(--font_size-middle);
  letter-spacing: 1px;
}

.grid-info {
  color: var(--color-content);
  font-size: var(--font_size-ex-small);
}

.grid-comment {
  margin-left: 1em;
}


/***==========================================
      article
==========================================***/

.main-body {
  margin-bottom: 40px;
}

#entry_header {
  font-size: var(--font_size-ex-small);
}

#entry_header-title {
  display: inline-block;
  margin: 0 auto 10px;
  font-size: 1.8rem;
}

#entry_header-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: .5em 0;
  border-top: 1px dotted var(--border_color);
  border-bottom: 1px dotted var(--border_color);
}

#entry_header-box-left {
  margin: 0 15px 0 0;
}

#entry_header-box-author-anchor {
  color: var(--color-base);
  cursor: none;
}

#entry_header-box-author-img {
  width: 70px;
  height: 70px;
  border-radius: 2px;
  object-fit: cover;
}

#entry_header-modifiedtime,
#entry_header-comment {
  margin-left: 1em;
}

.entry_header-tag-link {
  display: inline-block;
  margin-right: 1em;
}

.contents {
  margin: 20px 0;
  font-size: var(--font_size-large);
}

.height-adjust {
  margin-top: calc(var(--height-navi) * -1);
  padding-top: var(--height-navi);
}

.inner-contents {
  position: relative;
  z-index: 1;
  line-height: var(--line_height-entry);/* 注)記事行間 */
  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(--font_size-small);
}

#postmark {
  margin: 30px 0;
}

#postmark-anchor {
  color: var(--color-base);
  cursor: text;
}

/* ユーザータグ(外部) タグポータル移動 */
#external-tag {
  margin: 30px 0;
}

#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(--bgcolor-box);
}

/* 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: 3px;
  background: var(--bgcolor-box);
}

#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(--font_size-middle);
}

#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: 3px;
}

#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(--font_size-another-title)/1.5 'Mountains Of Christmas', Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}

.fc2relate_entry_thumbnail_on .relate_dt {
  display: none;
}

/* without thumbnail */
.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(--font_size-large);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

.date {
  padding-top: 10px;
}

.relate_ul {
  padding: 10px;
  background: var(--bgcolor-box);
  font-size: var(--font_size-ex-small);
}

.relate_dl a {
  color: var(--color-side);
}

.relate_dl a:hover {
  text-decoration: underline;
}


/***==========================================
      posted comment
==========================================***/

/* Index, Comment などタイトル */
.another-title {
  margin: 0 auto 20px;
  font-weight: bold;
  font-size: var(--font_size-another-title);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

#another-title-span {
  margin-left: .5em;
  font-weight: normal;
  font-size: var(--font_size-middle);
  font-family: Arial, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', YuGothic, Meiryo, 'Yu Gothic', sans-serif;
}

.comment-number {
  display: none;
}

.comment-number0 {
  display: block;
  margin-bottom: 20px;
  color: var(--color-hidden-text);
  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(--bgcolor-button);
  color: var(--color-base);
  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(129,134,155)' stroke-miterlimit='10' stroke-width='4' d='M30 62h32V2H2v32' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Cpath fill='none' stroke='rgb(129,134,155)' 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: 3px;
  background: var(--bgcolor-box);
  font-size: var(--font_size-large);
}

.comment-info {
  font-size: var(--font_size-small);
  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(--bgcolor-button);
  color: var(--color-base);
}

.comment_btn-anchor:hover {
  background: var(--color-base-link);
  color: white;
}


/***==========================================
      comment form
==========================================***/

#comment_form {
  padding-top: var(--height-navi);
}

.division {
  display: flex;
  justify-content: space-between;
}

.apply,
.half {
  display: block;
  margin-bottom: 20px;
  padding: .6em;
  border-radius: 2px;
  border: 1px solid var(--border_color-input);
  background: var(--bgcolor-input);
  color: var(--color-base);
  outline: none;
  -webkit-appearance: none;
}

.apply {
  width: 100%;
}

.half {
  width: calc(50% - 7px);
}

.apply:focus,
.half:focus {
  border-color: var(--color-base);
  background: white;
}

#form-btn {
  max-width: 500px;
  margin: 30px 0 20px;
}

#comment {
  min-height: 200px;
  line-height: 1.5;
}

#comment_form input:-webkit-autofill {
  box-shadow: 0 0 0 1000px var(--bgcolor-input) inset;
}

#comment_form input::-webkit-input-placeholder,
#comment_form textarea::-webkit-input-placeholder {
  color: var(--color-placeholder);
  font-size: var(--font_size-ex-small);
  font-family: 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: var(--color-placeholder);
  font-size: var(--font_size-ex-small);
  font-family: 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(--font_size-small);
  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(--color-base);/* 注)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(--color-base);/* 注)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(--color-base);/* 注)secretコメントチェックマーク色 2/3 */
    border-left: 3px solid var(--color-base);/* 注)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: 3px;
  border: 0;
  background: var(--bgcolor-button);
  color: var(--color-base);
  font-size: var(--font_size-small);
  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(--color-base);
  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(--border_color-input);
  background: var(--bgcolor-input);
  color: var(--color-base);
  font-size: var(--font_size-small);
  outline: none;
  -webkit-appearance: none;
}

#for-trackback-word {
  font-size: var(--font_size-small);
}

.tb-title {
  display: block;
  margin-top: 15px;
  color: var(--color-base);
  font-weight: bold;
  font-size: var(--font_size-middle);
}

.tb-desc {
  margin: 1em 0;
  font-size: var(--font_size-small);
}

.tb-date {
  color: var(--color-content);
  font-size: var(--font_size-small);
  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(--color-hidden-text);
  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(--color-content);
}

.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(--color-base);
}

.index_info-date {
  float: right;
  margin-top: 4px;
  margin-left: 1.5em;
  font-size: var(--font_size-small);
}

.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: 3px;
  object-fit: cover;
}

.thumbnails-noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--bgcolor-noimage);
  color: var(--color-content);
  font-size: var(--font_size-ex-small);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

.search-desc {
  font-size: var(--font_size-large);
}

.index-category-anchor {
  display: inline-block;
  padding: .2em .6em;
  border-radius: 3px;
  background: var(--bgcolor-box);
  color: var(--color-base);
  font-size: var(--font_size-small);
}

.index-category-anchor:hover {
  background: var(--color-base);
  color: white;
}


/***==========================================
      main profile
==========================================***/

#sticky-object {
  position: relative;
  margin: 70px 0;
}

@media screen and (min-width: 1500px) {
  #sticky-object {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
  }
}

#main_prof {
  margin: 40px auto;
  padding: 30px;
  box-shadow: 8px 9px 13px 1px rgba(0,0,0,.1);
  background: white;
}

#main_prof-left {
  max-width: 280px;
  margin: auto;
}

#main_prof-pic-wrapper {
  position: relative;
  overflow: hidden;
}

#main_prof-pic-wrapper::before {
  content: "";
  display: block;
  padding-top: 100%;
}

#main_prof-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main_prof-right {
  padding: 15px 0 0;
  font-size: var(--font_size-small);
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 640px) {
  #main_prof {
    display: flex;
  }
  #main_prof-left {
    width: 30%;
  }
  #main_prof-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 0 30px;
  }
}

#main_prof-desc-name {
  display: inline-block;
  margin-bottom: .5em;
  font-weight: bold;
}

#main_prof-snslist {
  margin: 15px 0;
  text-align: center;
}

.main_prof-snsitem {
  display: inline-block;
  margin: 0 5px 5px;
}

.main_prof-snsitem-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: var(--font_size-small);
}

@media screen and (min-width: 769px) {
  .main_prof-snsitem-anchor {
    filter: brightness(90%);
  }
  .main_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;
  margin-top: auto;
  border-radius: 3px;
  border: 0;
  background: var(--color-base);
  color: var(--color-opposite);
  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;
}


/***==========================================
      side menu(secondary)
==========================================***/

.side_menu ul {
  list-style-type: disc;
  margin-left: 1.5em;
}

#white-ribbon {
  transform: rotate(-6deg);
}

.side_menu-heading {
  padding: .4em .8em;
  margin: 0 auto 20px;
  background-color: var(--black-polka);
  background-image: var(--polka-dots), var(--polka-dots);
  font-weight: bold;
  font-size: var(--font_size-middle);
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}

@media screen and (min-width: 1500px) {
  .side_menu:last-of-type {
    position: -webkit-sticky;
    position: sticky;
    top: 30px;
  }
}


/***==========================================
      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(--color-base-link);
  background: var(--color-base-link);
  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(--border_color-input);
  background: var(--bgcolor-input);
  outline: none;
  -webkit-appearance: none;
}

.plugin-mail input[type="submit"],
.plugin-search input[type="submit"] {
  background-color: var(--bgcolor-button);
  border-radius: 1px;
  border: 0;
  color: var(--color-base);
  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(--font_size-ex-small);
}

.plugin-tag a:hover {
  border-color: var(--color-base-link);
  background-color: var(--color-base-link);/* 注)個別記事下tagホバー時背景色 */
  color: white;
  text-decoration: none;
}

.plugin-myimage {
  margin: 0 auto 15px;
  text-align: center !important;
}


/***==========================================
      pager
==========================================***/

/* general */
#pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  margin: 70px auto;
  color: var(--color-base);
  font-size: var(--font_size-ex-small);
  font-family: 'Times New Roman', serif;
}

#pager-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pager-item  {
  width: 32px;
  height: 32px;
  margin: 0 1px 2px;
}

#current,
.pager-item-anchor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgb(220,220,220);
  background: white;
  color: var(--color-base);
}

#current {
  background: var(--bgcolor-box);
}

.pager-item-anchor:hover {
  background: var(--bgcolor-header);
}

/* article */
#pager_entry {
  margin: 70px auto;
  font-size: var(--font_size-small);
}

.pager_entry-list {
  margin: 0 auto 40px;
}

.pager_entry-item {
  margin-bottom: 15px;
}

@media screen and (min-width: 580px) {
  .pager_entry-list {
    display: flex;
    justify-content: space-between;
  }
  .pager_entry-item {
    width: calc(50% - 3px);
  }
}

.pager_entry-item-anchor {
  display: flex;
  box-shadow: 0 0 8px -1px rgba(0,0,0,.1);
  background: white;
  color: var(--color-content);
}

.pager_entry-item-anchor:hover {
  color: var(--color-base);
}

.pager_entry-image {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.pager_entry-box {
  flex: 1;
  min-width: 0;
  padding: 10px;
  background: white;
}

.next-justify {
  text-align: right;
}

.pager_entry-box-text {
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pager_entry-box-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  max-height: calc(var(--font_size-small) * var(--line_height-base) * 3);
  overflow: hidden;
}

#pager_entry-cat-guide {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: var(--font_size-middle);
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

/* titlelist */
#pager_titlelist-list {
  display: flex;
  width: 450px;
  align-items: center;
  justify-content: space-between;
  max-width: 70%;
  margin: 70px auto;
  font-family: 'Times New Roman', serif;
  font-size: 12px;
}

.pager_titlelist-item {
  width: 32px;
  height: 32px;
}


/***==========================================
      footer
==========================================***/

#page_scroll {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 8px;
  z-index: 100;
  font-size: 11px;
  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(--bgcolor-page-scroll);
  color: var(--color-page-scroll);
}

.page_scroll-anchor:hover {
  color: var(--color-page-scroll);
}

@media screen and (min-width: 960px) {
  #page_scroll {
    right: 30px;
  }
}
@media screen and (min-width: 1500px) {
  #pagemiddle {
    display: none;
  }
}

#footer {
  margin: 80px 0 0;
  padding: 1em 0;
  color: var(--color-content);
  line-height: 1.4;
  text-align: center;
}

@media screen and (min-width: 960px) {
  #footer {
    width: calc(var(--width-main) - var(--gap));
    margin: 80px 0 0 calc(var(--width-header) + var(--gap));
    padding: 1em calc(var(--gap) + 1em) 1em 1em;
  }
}

.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;
  letter-spacing: normal;
  animation: blink 1s ease-in-out infinite alternate;
}


/* ===========================================
      カテゴリモーダル modal
=========================================== */

@keyframes zoomIn{0%{opacity:0;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}
@keyframes zoomOut{0%{opacity:1;transform:scale(1)}100%{opacity:0;transform:scale(1.1)}}

.noscroll {
  overflow: hidden;
}

.overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10005;
  height: 100vh;
  background: var(--bgcolor-overlay);
  color: var(--color-overlay);
  overflow-y: auto;
  pointer-events: none;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

[aria-hidden="true"] {
  pointer-events: none;
  animation: zoomOut 1s;
}

[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  animation: zoomIn 1s;
}

.overlay-inner {
  margin: 80px auto 0;
}

#overlay_category-list {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 150px;
  font-size: var(--font_size-middle);
}

.overlay_category-item {
  margin: .6em 0;
}

.overlay_category-item-anchor {
  display: block;
  color: white;
}

.close-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  border: 0;
  background: var(--bgcolor-overlay-close);
  color: var(--color-opposite);
  font-size: var(--font_size-large);
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
}

.sub-has-next::before {
  content: "┣";
  margin: 0 .5em;
}

.sub-end::before {
  content: "┗";
  margin: 0 .5em;
}


/***==========================================
      element
==========================================***/

blockquote {
  margin: 2em 0;
  padding: 4rem 2rem 2rem;
  border-radius: 3px;
  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 /2.5rem 2.5rem no-repeat var(--bgcolor-box);/* 注)引用マークの色変更は rgb(200,200,200) を変更 */
  font-size: .9em;
}

blockquote p:first-of-type {
  margin-top: 0;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

blockquote cite {
  display: block;
  margin-top: 1em;
  font-style: italic;
  text-align: right;
}

blockquote cite::before {
  content: "\2500";
  margin-right: .5em;
  color: var(--color-base-link);
}

pre {
  padding: 1em;
  border-left: 4px solid rgb(192, 205, 220);
  background: rgb(239, 243, 247);
  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(--font_size-ex-small);
}

.recent-image {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.recent-noimage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: var(--bgcolor-box);
  font-size: var(--font_size-min);
}

.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: var(--bgcolor-body) var(--bgcolor-body) rgb(221,221,221) rgb(221,221,221);
  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-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);
}