@charset "utf-8";

/**
* Author: Vanillaice (Akira) - https://vanillaice000.blog.fc2.com/
* Website skin name: lilting
* The first edition: 2018.10.20
*/

/***------------------------------------------
      reset(do NOT change or delete)
------------------------------------------***/

embed,iframe,img,table,textarea{max-width:100%}#fc2_text_ad,pre,table{word-break:break-all}dd,dl,dt,figure,li,ol,p,strong,summary,ul,var{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}iframe{border:0}img{height:auto;line-height:0;vertical-align:bottom;font-size:0}ol,ul{list-style-type:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}input:not([type=submit]),select,textarea{border-radius:0;outline:0;-webkit-appearance:none;font-size:16px}input[type=submit]{border-radius:0;outline:0;-webkit-appearance:button;font-size:inherit}pre{white-space:pre-wrap;font-family:Menlo,consolas,Courier}*{box-sizing:border-box}:focus{outline:0}.fc2_footer{margin:20px 0 0}#fc2_text_ad{margin:20px 0!important;letter-spacing:normal;line-height:1.4;font-size:11px}#fc2_text_ad a{color:#646464}#change_mobile{display:none}::before,::after{box-sizing:inherit}#sh_fc2blogheadbar{z-index:4000!important}


/***------------------------------------------
      variables
------------------------------------------***/

:root {
  --base-bg-color: rgb(255,255,255);/* 注)メインコンテンツ背景色 */
  --sub-bg-color: rgb(255,255,255);/* 注)サイドメニュー背景色 */
  --base-font-color: rgb(51,51,51);/* 注)基本文字色 */
  --navi-color: rgb(149,131,127);/* 注)グローバルナビ背景色, 基本リンク色 */
  --base-pagination-color: rgb(159,141,137);/* 注)汎用ページ送り背景色 */
  --general-color: white;
  --navi-height: 60px;
  --large-font-size: 1.4rem;
  --middle-font-size: 1.3rem;
  --small-font-size: 1.2rem;
  --ex-small-font-size: 1.1rem;
}


/***------------------------------------------
      link
------------------------------------------***/

a {
  text-decoration: none;
  color: var(--navi-color);
  transition: .3s ease-in-out;
}

a:hover {
  color: var(--base-font-color);
}


/***------------------------------------------
      svgs
------------------------------------------***/

.svg-inline {
  display: inline-block;
  height: 1em;
  font-size: inherit;
  vertical-align: -.125em;
  fill: currentColor;
}

.svg-stroke-inline {
  display: inline-block;
  height: 1em;
  font-size: inherit;
  vertical-align: -.125em;
  fill: none;
  stroke: currentColor;
}

.svg-inline-comment,
.svg-inline-clock,
.svg-inline-reclock,
.svg-inline-folder,
.svg-inline-sync,
.svg-inline-tag {
  margin: 0 .4em 0 0;
}


/***------------------------------------------
      layout
------------------------------------------***/

html {
  margin: 0;
  font-size: 62.5%;
}

body {
  position: relative;
  margin: 0;
  background: var(--base-bg-color);
  color: var(--base-font-color);
  font: 1.5rem/1.5 'Avenir', 'Century Gothic', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック', 'Hiragino Sans', '游ゴシック体', '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);
}

#primary {
  position: relative;
  z-index: 3;
  width: calc(100% - 20px);
  margin: auto;
}

#secondary {
  padding: 30px 0 50px;
  font-size: 1.3rem;
  line-height: 1.8;
  background: var(--sub-bg-color);
}

#aside-wrapper {
  width: calc(100% - 30px);
  margin: auto;
}

.side-menu {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 40px;
}

@media screen and (min-width: 600px) {
  #primary,
  #aside-wrapper {
    width: calc(100% - 60px);
    max-width: 1100px;
  }
}
@media screen and (min-width: 760px) {
  #aside-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .side-menu {
    width: 300px;
    margin: 0 10px 40px;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

#header-banner {
  position: relative;
  padding: 70px 0 90px;
  color: var(--general-color);
  text-align: center;
}

@media screen and (min-width: 420px) {
  #header-banner {
    padding: 100px 0 120px;
  }
}

#header-banner::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);/* ヘッダーマスク色+不透明度 */
}

#blog-title {
  position: relative;
  z-index: 3;
  margin: auto;
  width: 100%;
  max-width: 800px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 2px;
  text-indent: 2px;
  text-transform: uppercase;/* 注)ブログタイトル欧文大文字縛り解除はこの一行削除 */
}

#blog-title a {
  color: var(--general-color);
}

#site-description {
  position: relative;
  z-index: 3;
  margin: 8px auto 0;
  width: 100%;
  max-width: 850px;
  font-size: var(--small-font-size);
}


/***------------------------------------------
      breadcrumbs
------------------------------------------***/

#breadcrumbs {
  position: relative;
  z-index: 3;
  margin: 8px auto 0;
  width: 100%;
  max-width: 850px;
  font-size: var(--small-font-size);
}

#breadcrumbs li {
  display: inline-block;
}

#breadcrumbs a {
  color: var(--general-color);
  text-decoration: underline;
}

#breadcrumbs span {
  margin: 0 .5em;
  vertical-align: .1em;
}


/***------------------------------------------
      navigation (global and social)
------------------------------------------***/

#horizontal {
  position: relative;
  z-index: 3;
  width: calc(100% - 20px);
  max-width: 1100px;
  height: var(--navi-height);
  margin: -30px auto 0;
  overflow: hidden;
  background: var(--navi-color);
  color: var(--general-color);
  font-size: var(--ex-small-font-size);
  line-height: var(--navi-height);
  letter-spacing: 1px;
  text-transform: uppercase;/* 注)ナビゲーション大文字縛り解除はこの一行削除 */
  text-align: center;
}

@media screen and (min-width: 600px) {
  #horizontal {
    width: calc(100% - 60px);
  }
}

#navi-scroll {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  height: calc(var(--navi-height) + 20px);
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

#navi-item li {
  display: inline-block;
  padding: 0 25px;
}

#navi-item li a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--general-color);
}

#search-navi {
  cursor: pointer;
}

#navi-item #sp-hide {
  display: none;
}

@media screen and (min-width: 769px) {
  #navi-item #sp-hide {
    display: inline-block;
  }
}


/***------------------------------------------
      grid
------------------------------------------***/

.lazyloading{opacity:0;transform:scale(.8)}.lazyloaded{opacity:1;transform:scale(1);transition:1s}
@keyframes spanLazy{0%,50%{opacity:0;transform:scale(.8)}100%{opacity:1;transform:scale(1)}}

#grid-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 10px;
  grid-gap: 10px;
}

.grid-item {
  overflow: hidden;
  font-size: var(--ex-small-font-size);
}

.image-wrapper {
  position: relative;
  height: 0;
}

/* aspect of images */
.grid-item .image-wrapper:nth-of-type(4n+1) {
  padding-top: 100%;
}

.grid-item:nth-of-type(4n+2) .image-wrapper {
  padding-top: 65%;
}

.grid-item:nth-of-type(4n+3) .image-wrapper {
  padding-top: 120%;
}

.grid-item:nth-of-type(5n+4) .image-wrapper {
  padding-top: 80%;
}

.noimage-wrapper {
  position: relative;
  height: 0;
  padding-top: 56.25%;
}

.noimage-span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(239,229,228);
  animation: spanLazy 1s;
}

.grid-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.grid-content {
  padding: 15px 10px 10px;
  box-shadow: 0px 20px 0 0 var(--general-color);
  background: var(--general-color);
}

.grid-title {
  margin: 0 auto 10px;
  font-size: var(--large-font-size);
  word-break: break-all;/* 注)欧文の折返しが気になる方この一行削除 */
}

.grid-comment {
  display: inline-block;
  margin: 0 0 0 1em;
}

@media screen and (min-width: 375px) {
  #grid-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 421px) {
  .grid-title {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  }
}


/***------------------------------------------
      article
------------------------------------------***/

.main-body {
  margin: 0 0 40px;
  padding: 20px 10px;
  background: var(--general-color);
}

@media screen and (min-width: 600px) {
  .main-body {
    padding: 20px;
  }
}
@media screen and (min-width: 900px) {
  .main-body {
    padding: 20px 40px;
  }
}

#entry-header {
  margin: 0 auto 10px;
  font-size: var(--ex-small-font-size);
}

#entry-title {
  margin: 0 auto 10px;
  font-size: 1.8rem;
}

#entry-day,
#modified-day,
#entry-comment,
#entry-tb {
  display: inline-block;
}

#entry-day,
#modified-day,
#entry-comment {
  margin: 0 1em 0 0;
}

.entry-tag-link:not(:last-of-type) {
  margin: 0 1em 0 0;
}

#inner-contents,
.contents {
  padding: 20px 0;
}

#inner-contents {
  line-height: 1.9;/* 注)記事行間 */
}

/* back to default */
#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 a:hover {
  text-decoration: underline;
}

/* headline */
#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;
}

/* article footer */
#entry-footer {
  font-size: var(--small-font-size);
}

#entry-author {
  display: flex;
  margin: 20px 0;
}

#publisher-image {
  width: 100px;
  height: 100px;
  margin: 0 15px 0 0;
}

#author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

#author-desc {
  flex: 1;
  min-width: 0;
}

#author-desc-dv {
  margin: .5em 0;
}

/* sns */
#entry-sns-wrapper {
  display: flex;
  text-align: center;
}

.sns-list {
  flex: 1 1 0;
}

.sns-list:not(:last-of-type) {
  margin-right: 5px;
}

.sns-a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  color: white;
  height: 35px;
}

.sns-a:hover {
  color: white;
  transform: translateY(-2px);
}

#e-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-pinterest-p {
  background: rgb(206,15,25);
}

#e-google-plus-g {
  background: rgb(221,75,57);
}

#e-hatena {
  background: rgb(61,142,216);
}


/***------------------------------------------
      related post, trackback list
------------------------------------------***/

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  position: relative;
  z-index: 1;
  margin: 80px auto 30px;
  padding: 0;
}

#fc2relate_entry_thumbnail_area .relate_dt {
  display: none;
}

#fc2relate_entry_thumbnail_area:before {
  content: "You may also like";/* 注)サムネイル付き関連記事リストタイトル変更可 */
  display: block;
  position: absolute;
  top: -50px;
  z-index: 3;
  width: 100%;
  margin: auto;
  padding-top: 20px;
  font-weight: bold;
  font-size: var(--middle-font-size);
  letter-spacing: 1px;
  text-transform: uppercase;
}

#fc2relate_entry_thumbnail_area .relate_dd {
  overflow-x: scroll;
  border: 1px solid rgb(220,220,220);
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
  display: flex;
  padding: 6px 10px;
}

#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;
  width: 290px;
  height: 88px;
  white-space: normal;
}

#fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
  display: block;
  width: 88px;
  height: 88px;
  padding: 4px;
}

#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%;
}

#fc2relate_entry_thumbnail_area .relate_entry_title {
  display: block;
  flex: 1;
  min-width: 0;
  padding: 0 1em;
}

@media screen and (min-width: 660px) {
  #fc2relate_entry_thumbnail_area .relate_dd {
    overflow: hidden;
    white-space: normal;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
    flex-wrap: wrap;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li, #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li, #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_li_nolink  {
    width: calc(100% / 3);
  }
}

/* without thumbnail */
.relate_dl,
.tb_dl {
  margin: 30px 0 0;
  letter-spacing: normal;
  padding: 10px;
}

.relate_dt,
.tb_dt {
  padding: 3px;
  font-weight: bold;
}

.date {
  padding-top: 10px;
}

.relate_ul,
.tb_ul {
  padding: 10px 0;
  font-size: var(--small-font-size);
}


/***------------------------------------------
      posted comment
------------------------------------------***/

/* Index, Comment などタイトル */
.another-title {
  margin: 0 auto 20px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
  text-transform: uppercase;
}

.comment-number {
  display: none;
}

.comment-number0 {
  display: block;
  color: rgb(180,180,180);
  font-style: italic;
  text-align: center;
}

.border-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  min-height: 46px;
  font-size: var(--large-font-size);
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 15px 0 0;
  border-radius: 50%;
  background: rgb(240,240,240);
  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;
}

.visitor-name-and-title {
  flex: 1;
  font-weight: bold;
}

.comment-body {
  margin: 1em 0 1em 23px;
  font-size: var(--middle-font-size);
}

.comment-btn-list {
  display: inline-block;
  margin: 5px 0 0 5px;
}

.btn-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--base-pagination-color);
  color: white;
}

.btn-a:hover {
  color: white;
  transform: translateY(-2px);
}


/***------------------------------------------
      comment form
------------------------------------------***/

#comment_form {
  margin: 0 auto;
  width: 100%;
  vertical-align: middle;
  text-decoration: none;
}

#left-half {
  display: inline-block;
  margin: 0 1% 0 0;
  width: 49%;
}

#right-half {
  display: inline-block;
  margin: 0 0 0 1%;
  width: 49%;
}

#comment_form input {
  margin: 0 0 15px;
  width: 100%;
  padding: 12px;
  border: 1px solid rgb(200,200,200);
  background: rgb(250,250,250);
  color: var(--base-font-color);
}

#comment_form input:focus,
#comment:focus {
  background: white;
  border: 1px solid rgb(51,51,51);
}

#comment_form #password {
  width: 50%;
}

#comment {
  margin: 0;
  margin: 0 0 15px;
  width: 100%;
  min-height: 200px;
  padding: 12px;
  border: 1px solid rgb(200,200,200);
  background: rgb(250,250,250);
  color: var(--base-font-color);
  line-height: 1.5;
}

#comment_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(250,250,250) inset;
}

#comment_form input::-webkit-input-placeholder,
#comment_form textarea::-webkit-input-placeholder {
  letter-spacing: 1px;
  font-family: 'Helvetica', 'Arial', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック', 'Hiragino Sans', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: var(--ex-small-font-size);
}

#comment_form input::-moz-placeholder,
#comment_form textarea::-moz-placeholder {
  letter-spacing: 1px;
  font-family: 'Helvetica', 'Arial', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック', 'Hiragino Sans', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', sans-serif;
  font-size: var(--ex-small-font-size);
}

/* 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 24px;
  }

  #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 rgb(200,200,200);/* 注)secretコメントチェックボックスボーダー色 */
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
  }

  #no-p input[type=radio]:checked + label:after {
    top: 2px;
    left: 5px;
    width: 8px;
    height: 8px;
    margin: -4px 0 0;
    border-radius: 8px;
    background: var(--base-font-color);/* 注)secretコメントチェックマーク色 1/3 */
  }

  #no-p input[type=checkbox]:checked + label:after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin: -8px 0 0;
    border-bottom: 3px solid var(--base-font-color);/* 注)secretコメントチェックマーク色 2/3 */
    border-left: 3px solid var(--base-font-color);/* 注)secretコメントチェックマーク色 3/3 */
    transform: rotate(-45deg);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  width: 49%;
  max-width: 156px;
  height: 40px;
  border: 0;
  background: var(--navi-color);
  color: white;/* 注)send, deleteボタンテキスト色 */
  font-size: var(--small-font-size);/* 注)send, deleteボタンフォント大きさ */
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  transform: translateY(-2px);
}

#sendbtn {
  margin: 20px 1% 0 0;
}

#delbtn {
  margin: 20px 0 0 1%;
}

.comment-info {
  font-size: var(--small-font-size);
  text-align: right;
}


/***------------------------------------------
      trackback
------------------------------------------***/

#op,
#for-trackback-word {
  display: block;
  width: 100%;
}

#op {
  margin: 30px auto 10px;
  border: 1px solid rgb(220,220,220);
  border-radius: 0;
  padding: .5em;
  font-size: var(--middle-font-size);
  outline: none;
}

#for-trackback-word {
  margin: 0 auto 20px;
}

#tb-num0 {
  display: none;
}


/***------------------------------------------
      index (title list), search page
------------------------------------------***/

.list-title {
  margin: 0 auto;
  font-weight: bolder;
  font-size: 1.5rem;
}

.list-entry {
  overflow: hidden;
  padding: 5px 0 0;
}

.list-entry-date,
.list-entry-category {
  font-size: var(--small-font-size);
  text-align: right;
}

.list-entry-category a {
  margin: 0 0 0 .4em;
}

/* only for search page */
.list-a {
  float: right;
  width: 72px;
  height: 72px;
  margin: 0 0 5px 10px;
  color: var(--base-font-color);
}

.thumbnails {
  display: inline-block;
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 2px;
  overflow: hidden;
}

.search-noimage {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(239,229,228);/* 注)No image 検索結果サムネイル背景色 */
  font-size: 10px;
  line-height: 72px;
  letter-spacing: 1px;
  text-indent: 1px;
  text-align: center;
}

/* the number of comment, trackback */
.number-of-cmtb {
  margin: 5px 0 0;
  font-size: var(--small-font-size);
  text-align: right;
}

.cmtb-list {
  display: inline-block;
  margin: 0 0 0 1em;
}

/* only for search */
.hit-number {
  display: none;
  padding: 20px 0;
  color: rgb(200,200,200);
  font-size: 8rem;
  line-height: 1.1;
  text-align: center;
}

.hit0 span {
  color: rgb(200,200,200);
  font-size: 1.5rem;
}

.hit0 {
  display: block;
}


/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.side-menu ul:not(#sns-wrapper) {
  margin: 0 0 0 1.5em;
  list-style-type: disc;
}

.sidebar-style {
  text-align: left;
}

.sidebar-style a {
  color: rgb(70,70,70);
}

.sidebar-style a:hover {
  text-decoration: underline;
}

.side-heading {
  margin: 0 0 20px;
  padding: .3em;
  background: var(--navi-color);
  color: white;
  font-size: var(--middle-font-size);
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* calendar */
.calender {
  margin: 0 auto;
  table-layout: fixed;
  width: 100%;
  border-spacing: 3px 6px;
  font-size: 12px;
  text-align: center;
}

.calender caption {
  margin: 0 0 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;
  padding: 0;
  line-height: 30px;
}

.calender td a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(149,131,127,.1);
}

.calender td a:hover {
  background: var(--navi-color);
  color: white;
  text-decoration: none;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: 0 auto;
}

.sidebar-style input:not([type="submit"]),
.sidebar-style textarea,
.sidebar-style select {
  display: inline-block;
  width: 100% !important;
  padding: .5em;
  border: 0;
  border-radius: 1px;
  background: white;
  color: var(--base-font-color);
  outline: none;
}

.sidebar-style input[type="submit"] {
  border: 0;
  background: rgba(149,131,127,.1);
  color: var(--base-font-color);
  cursor: pointer;
  transition: .3s ease-in-out;
}

/* search */
.plugin-search {
  margin: 0 auto;
}

.plugin-search input {
  margin: 0 0 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 0 2px 3px 0;
  border-radius: 1px;
  background: rgba(149,131,127,.1);
  padding: .1em 1em;
  font-size: var(--small-font-size);
}

.plugin-tag a:hover {
  background: var(--navi-color);
  color: white;
  text-decoration: none;
}

.plugin-myimage {
  margin: 0 auto 15px;
  text-align: center !important;
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
#pagination {
  margin: 70px auto;
  width: 100%;
  font-family: 'Times New Roman', serif;
  font-size: var(--ex-small-font-size);
  text-align: center;
}

#pagination li {
  display: inline-block;
  margin: 0 3px 3px; 
}

#current,
#pagination li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--base-pagination-color);
  color: white;
}

#pagination li a:hover {
  background: var(--navi-color);
}

#current {
  background: var(--sub-bg-color);
  color: var(--base-font-color);
}

/* article */
#pager-wrapper {
  margin: 70px 15px;
}

.posted-pager {
  margin-bottom: 40px;
  font-size: 12px;
}

.pager-name {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: var(--middle-font-size);
  letter-spacing: 1px;
  text-align: center;
  text-indent: 1px;
}

.prev-entry {
  margin-bottom: 10px;
}

.next-entry {
  text-align: right;
}

@media screen and (min-width: 600px) {
  .posted-pager {
    display: flex;
    justify-content: space-between;
  }
  .prev-entry,
  .next-entry {
    width: calc(50% - 4px);
    margin-bottom: 0;
  }
}
@media screen and (min-width: 900px) {
  #pager-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 40px;
  }
}

.prev-a,
.next-a {
  display: flex;
  width: 100%;
      box-shadow: 0px 1px 3px rgba(0,0,0,.18);
  font-size: var(--small-font-size);
}

.next-a {
  flex-direction: row-reverse;
}

#posted-prev-image,
#posted-next-image,
#posted-prev-cate-image,
#posted-next-cate-image {
  width: 30%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.preventry-text,
.nextentry-text {
  display: inline-block;
  padding: .2em .5em;
  background-color: rgba(51,51,51,.7);
  color: white;
}

.posted-pager-content {
  flex: 1;
  background-color: white;
}

.preventry-title,
.nextentry-title {
  height: calc(var(--small-font-size) * 1.3 * 3);
  margin: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.3;
  letter-spacing: 1px;
  text-align: left;
  text-indent: 1px;
  word-break: break-all;
}

.prev-a:hover,
.next-a:hover {
  box-shadow: 0 6px 6px rgba(0,0,0,.15);
  transform: translateY(-2px);
}

/* titlelist */
#titlelist-pager {
  display: flex;
  width: 100%;
  max-width: 300px;
  margin: 70px auto;
}

#page-center-cell {
  width: 35px;
  height: 35px;
}

#page-left-cell,
#page-right-cell {
  flex: 1;
}

#t-center-a,
#t-prev-a,
#t-next-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding-bottom: .1em;
  border-radius: 50%;
  background-color: var(--base-pagination-color);
  color: white;
}

#t-next-a {
  margin-left: auto;
}

#t-center-a:hover,
#t-prev-a:hover,
#t-next-a:hover {
  background-color: var(--navi-color);
}


/***------------------------------------------
      site search
------------------------------------------***/

#modal-overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -999;
  width: 100%;
  height: 100%;
  background: rgba(149,131,127,.95);/* 注)モーダル背景色 */
  color: white;
  text-align:center;
  transform: scale(.8);
  transition: .75s;
}

#modal-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 100px;
}

#modal-close-label {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: var(--middle-font-size);
  letter-spacing: 2px;
  text-indent: 2px;
  cursor: pointer;
}

#modal-form {
  display: block;
  position: relative;
  z-index: 3;
  top: 50%;
  width: 90%;
  max-width: 500px;
  margin: auto;
  padding: .5em 0;
  border-bottom: 1px solid white;
  text-align: left;
  transform: translateY(-50%);
}

#modal-input {
  width: 100%;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.6rem;
}

#modal-input::-webkit-input-placeholder {
  color: rgb(240,240,240);
}

#modal-input::-moz-input-placeholder {
  color: rgb(240,240,240);
}

#modal-trigger {
  display: none;
}

#modal-trigger-label {
  cursor: pointer;
}

#modal-close-label span {
  top: 50%;
  position: relative;
  transform: translateY(-50%);
}

#modal-trigger:checked ~ #modal-overlay {
  opacity: 1;
  z-index: 100005;
  transform: scale(1);
}


/***------------------------------------------
      footer
------------------------------------------***/

/* animation */
@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

#page-scroll {
  display: none;
  position: fixed;
  bottom: 120px;
  right: 8px;
  z-index: 2000;
  font-size: 11px;
  text-align: center;
  animation: slideInUp .8s;
}

#pagetop,
#pagemiddle,
#pagebottom {
  margin: 0 0 10px;
  width: 40px;
  height: 40px;
}

#pagemiddle {
  font-size: 10px;
}

#page-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgb(220,220,220);
  background: rgba(255,255,255,.4);
  color: rgba(50,50,50,.8);
}

@media screen and (min-width: 920px) {
  #page-scroll {
    right: 30px;
    bottom: 80px;
  }
}

#footer {
  margin-top: auto;
  padding: 1em 15px;
  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: 0 0 0 .5em;
  color: red;
  font-weight: normal;
  font-size: 1rem;
  animation: blink 1s ease-in-out infinite alternate;
}


/***------------------------------------------
      blockquote
------------------------------------------***/

blockquote {
  margin: 2rem 0;
  padding: 5rem 2rem 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' viewBox='0 0 36 36' fill='rgb(200,200,200)'%3E%3Cpath d='M11.86,16.55a4.31,4.31,0,0,0-2.11.56,14.44,14.44,0,0,1,4.36-6,1.1,1.1,0,0,0-1.4-1.7c-4,3.25-5.78,7.75-5.78,10.54A5.08,5.08,0,0,0,10,24.58a4.4,4.4,0,0,0,1.88.44,4.24,4.24,0,1,0,0-8.47Z'%3E%3C/path%3E%3Cpath d='M23,16.55a4.29,4.29,0,0,0-2.11.56,14.5,14.5,0,0,1,4.35-6,1.1,1.1,0,1,0-1.39-1.7c-4,3.25-5.78,7.75-5.78,10.54a5.08,5.08,0,0,0,3,4.61A4.37,4.37,0,0,0,23,25a4.24,4.24,0,1,0,0-8.47Z'%3E%3C/path%3E%3C/svg%3E") top left /5rem 5rem no-repeat;/* 注)引用マークの色変更は rgb(200,200,200) を2箇所変更 */
}

blockquote p {
  margin: 0;
}


/***------------------------------------------
      personal settings
------------------------------------------***/

.freehand {
  border: 3px solid rgb(230,230,230);
  border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
  padding: 1em;
}

.dogear {
  position: relative;
  padding: 1em;
  background: rgb(240,240,240);
  color: rgb(51,51,51);
}

.dogear:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: white white rgb(221,221,221) rgb(221,221,221);
  box-shadow: -1px 1px 2px rgba(0,0,0,.3);
}

.curl {
  position: relative;
  z-index: 3;
  padding: .5em .75em;
  background: rgb(240,240,240);
  transform-style: preserve-3d;
}

.curl::before,
.curl::after {
  content: "";
  position: absolute;
  bottom: 8px;
  z-index: -1;
  width: 30%;
  height: 50%;
  box-shadow: 0 10px 15px rgba(0,0,0,.2);
}

.curl::before {
  left: .3em;
  transform: translate3D(0,0,-1px) rotate(-3deg);
}

.curl::after {
  right: .3em;
  transform: translate3D(0,0,-1px) rotate(3deg);
}

/* highlight */
mark {
  background: linear-gradient(transparent 60%,yellow 60%);
  font-weight: 700;
}

/* for video */
.box-for-video {
  position: relative;
  width: 100%;
}

.box-for-video:before {
  content:"";
  display: block;
  padding-top: 56.25%;/* 注)動画縦横比設定 デフォルト: 縦幅が横に対して56.25% 正方形は100%指定 */
  overflow: hidden;
}

.box-for-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* emoji */
.emoji {
  vertical-align: middle;
}