@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: OnTheGround
* The first edition: 2015.9.1
* 2015.9.9 - 公式化に伴う削除OGP削除
* 2015.11.22 - Windows10 IE11, Edge scrolling fixed image bug fix
* 2016.1.9 - フッターの構造変更, タイトルタグ微調整
* 2016.10.15 - 全体レイアウト調整, 一部ページをリスト表示に変更
* 2017.1.25 - SNSシェアリンクをエンコード
* 2017.9.22 - SSL化に伴うURL正規化
* 2018.1.16 - floatからflexレイアウトへ, リセットCSSを最小限に, html構造及びCSS装飾修正, その他微調整
* Latest update: 2019.1.22 - CSS一部追加(Adsenseを掲載しやすく調整), 構造化マークアップ導入 など
*/

/***------------------------------------------
      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;font-size:100%;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,select,textarea{font-size:16px}pre{white-space:pre-wrap;font-family:Menlo,consolas,Courier}*{-webkit-box-sizing:border-box;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}


/***------------------------------------------
      link
------------------------------------------***/

a {
  text-decoration: none;
  color: rgb(142,3,1);/* 注)基本リンク色はここです */
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}


/***------------------------------------------
      layout
------------------------------------------***/

html {
  margin: 0;
  font-size: 62.5%;
}

body {
  margin: 0;
  background-color: rgb(239,227,215);
  color: rgb(51,51,51);
  word-wrap: break-word;
  font: 1.4rem/1.9 'Georgia', '游ゴシック体', 'YuGothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', sans-serif;
  -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);
}

body:before {
  content: "";
  display: block;
  background: url(https://blog-imgs-79.fc2.com/v/a/n/vanillaice000/autumn.jpg) center top /cover no-repeat;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

/* スマホ用背景画像 ratio 9:16 */
@media screen and (max-width: 414px) {
  body:before {
    background: url(https://blog-imgs-118.fc2.com/v/a/n/vanillaice000/autumn_sp.jpg) left top /110% auto no-repeat;
  }
}

#wrapper {
  min-width: 70%;
}

#float-container {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1300px;
  padding: 50px 60px 80px;
}

#primary {
  -webkit-flex: 1;
  flex: 1;
  max-width: calc(100% - 40px - 280px);
  min-width: 0;
  margin-right: 40px;
}

#secondary {
  width: 280px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.side-menu {
  width: 280px;
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  #float-container {
    display: block;
  }
  #primary {
    max-width: 100%;
    margin: auto;
  }
  #secondary {
    display:-webkit-box;/* fallback old Android */
    display:-ms-flexbox;/* fallback ie10 */
    display: -webkit-flex;/* fallback old safari */
    display: flex;
    -ms-flex-wrap:wrap;/* fallback ie10 */
    -webkit-flex-wrap:wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;/* fallback old safari */
    justify-content: space-around;
    width: 100%;
    margin: auto;
  }
}
@media screen and (max-width: 850px) {
  #float-container {
    padding: 40px 30px 80px;
  }
}
@media screen and (max-width: 750px) {
  #secondary {
    display: block;
  }
  .side-menu {
    margin: 0 auto 30px;
    width: 100%;
    max-width: 450px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 740px) {
  #float-container {
    padding: 40px 15px 80px;
  }
  #primary {
    margin: auto;
    padding-right: 0;
  }
}
@media screen and (max-width: 414px) {
  #float-container {
    padding: 40px 0 80px;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

/* animation */
@-webkit-keyframes slideInDown{0%,50%{opacity:0;-webkit-transform:translateY(-30px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes slideInDown{0%,50%{opacity:0;transform:translateY(-30px)}100%{opacity:1;transform:translateY(0)}}

#header-banner {
  text-align: center;
}

#blog-name-container {
  margin: auto;
  padding: 70px 15px 30px;
}

#blog-title {/* 注)ブログタイトルフォント関連 */
  margin: auto;
  max-width: 800px;
  font-size: 2.6rem;
  line-height: 1.4;
  -webkit-animation: slideInDown 1.2s;
  animation: slideInDown 1.2s;
}

@media screen and (max-width: 768px) {
  #blog-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 414px) {
  #blog-title {
    font-size: 2.2rem;
  }
}

#sub-title,
#breadcrumbs {
  max-width: 850px;
  margin: 20px auto 0;
  line-height: 1.5;
  font-size: 1.2rem;
}


/***------------------------------------------
      breadcrumbs
------------------------------------------***/

#breadcrumbs li {
  display: inline-block;
}

#breadcrumbs span {
  margin: 0 .5em;
}


/***------------------------------------------
      global navigation
------------------------------------------***/

/* navigation */
#navigation-container {
  background: rgba(255,255,255,.5);
  width: 100%;
  line-height: 32px;
  font-size: 1.3rem;
  text-align: right;
}

#navi-list {
  display: inline-block;
  position: relative;
  margin: auto;
  max-width: 1300px;
  margin: 0 60px;
}

@media screen and (max-width: 850px) {
  #navi-list {
    margin: 0 30px;
  }
}
@media screen and (max-width: 740px) {
  #navi-list {
    margin: 0 15px;
  }
}

#navi-list li {
  display: inline-block;
  margin-left: 2em;
  vertical-align: top;
}

/* site search */
#expand-form {
  margin: 0;
  height: 32px;
}

#search-btn {
  background: transparent;
  color: rgb(168,0,47);
}

#search-text {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 30px;
  height: 32px;
  padding: 0 5px 0 10px;
  border-radius: 22px;
  border: none;
  background: rgb(250,250,250);
  color: rgb(51,51,51);
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  transition: .5s;
}

#search-text:focus {
  opacity: 1;
  width: 100%;
  cursor: text;
}

#search-text::-webkit-input-placeholder {
  font-family: 'Georgia', serif;
}

#search-text::-moz-placeholder {
  font-family: 'Georgia', serif;
}

#search-submit {
  display: none;
}


/***------------------------------------------
      entry
------------------------------------------***/

.main-body {
  position: relative;
  margin-bottom: 50px;
  padding: 20px 30px;
  box-shadow: 6px 6px 6px rgba(0,0,0,.1);
  border-radius: 4px;
  background: rgba(255,255,255,.8);/* 注)記事背景色 .8の数字を小さくすると不透明度が高くなります(薄くなります) */
}

@media screen and (max-width: 740px) {
  .main-body {
    padding: 20px;
  }
}
@media screen and (max-width: 414px) {
  .main-body {
    padding: 20px 15px;
  }
}

.contents {
  margin: 20px 0;
}

.inner-contents {
  padding: 20px 0;
}

/* 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;
}

.entry-datetime {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 108px;
  height: 90px;
  background: url(https://blog-imgs-79.fc2.com/v/a/n/vanillaice000/timeclock_A.png) center center no-repeat;
  padding: 15px 30px 0 0;
  position: absolute;
  top: -40px;
  right: -22px;
  z-index: 50;
  font: 13px/1.2em 'Dancing Script', cursive;
  text-align: center;
}

@media screen and (max-width: 740px) {
  .entry-datetime {
    right: 0;
  }
}

.entry-datetime span {
  display: block;
}

.topentry-day {
  font-size: 15px;
}

.entry-title {
  margin: auto;
  border-bottom: dotted 1px rgb(179,145,138);
  line-height: 1.4;
  padding: 0 78px 15px 0;
  font-size: 1.6rem;
}

@media screen and (max-width: 960px) {
  .entry-title {
    padding-right: 94px;
  }
}

.read-more {
  margin: 20px auto;
}

.read-more a {
  display: inline-block;
  padding: .2em .5em;
  border-radius: 5px;
  background: rgb(179,145,138);/* 注)続きを読む の背景色 */
  color: white;
}

/* user tag */
.entry-tag {
  margin-top: 30px;
  font-size: 1.2rem;
}

.entry-tag a {
  margin: 0 3px 3px 0;
  display: inline-block;
  border: 1px solid rgba(168,0,47,.1);
  border-radius: 3px;
  padding: .1em .4em;
}

/* article footer */
.entry-footer {
  margin-bottom: -10px;
  border-top: dotted 1px rgb(179,145,138);
  padding-top: 10px;
  text-align: right;
  font-size: 1.3rem;
}

.sns-and-others li {
  display: inline-block;
  padding-left: .3em;
  vertical-align: top;
  text-align: center;
}

.sns-and-others li a {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  box-shadow: inset 0 0 15px rgba(0,0,0,.2);
  border-radius: 50%;
  background: rgb(250,250,250);
  color: rgb(141,0,0);
}

.hatena {
  font-weight: 700;
  line-height: 1;
  font-family: 'Verdana', sans-serif;
}

.c-facebook:hover {
  background: rgb(59,89,152);
  color: white;
}
.c-twitter:hover {
  background: rgb(85,172,238);
  color: white;
}
.c-pinterest:hover {
  background: rgb(206,15,25);
  color: white;
}
.c-hatena:hover {
  background: rgb(61,142,216);
  color: white;
}
.c-pencil:hover {
  background: rgb(168,0,47);
  color: white;
}

.category-and-others li {
  display: inline-block;
  padding-left: 1em;
}

.category-and-others li a {
  display: inline-block;
  color: rgb(51,51,51);
}


/***------------------------------------------
      related post, trackback list
------------------------------------------***/

.relate_dl,
.tb_dl {
  margin: 20px auto 0;
  border-radius: 3px;
  box-shadow: inset 0 0 15px rgba(0,0,0,.2);
  padding: 10px;
  font-size: 1.2rem;
}

.relate_dt,
.tb_dt {
  font-weight: bold;
}

.date {
  padding-top: 10px;
}

.tb_li2 {
  text-align: right;
}

.inner-contents .relate_ul {
  margin: 0 0 0 1.5em;
  list-style-type: square;
  padding: 0;
}

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  margin: 90px auto 30px;
  padding: 6px 10px;
  position: relative;
  z-index: 1;
}

#fc2relate_entry_thumbnail_area .relate_dt {
  display: none;
}

#fc2relate_entry_thumbnail_area .relate_dd {
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area:before {
  content: "関連記事";/* 注)関連記事 タイトル変更はここです */
  display: block;
  margin: auto;
  width: 100%;
  padding-top: 20px;
  position: absolute;
  top: -50px;
  z-index: 3;
  font-size: 1.5rem;
  text-align: center;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
  list-style: none;
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
  width: 50%;
  height: 88px;
  float: left;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
  width: 50%;
}

@media screen and (max-width: 1120px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 960px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 50%;
    float: left;
  }
}
@media screen and (max-width: 820px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 100%;
    float: none;
  }
}

#fc2relate_entry_thumbnail_area .relate_entry_title {
  padding-right: 1em;
  word-break: break-all;
}

.related-overlay {
  position: relative;
}

.related-overlay:before {
  content: "No image";
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgb(179,145,138);/* 注)No image 関連記事サムネイル */
  border-radius: 1px;
  color: rgba(255,255,255,.7);
  line-height: 80px;
  position: absolute;
  z-index: 2;
  font-size: 11px;
  text-align: center;
}

#fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
  border-radius: 3px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img  {
  width: 80px !important;
  height: 80px !important;
  border-radius: 3px;
}

@media screen and (max-width: 479px) {
  #fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
    width: 80px !important;
    height: 80px !important;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img {
    width: 80px !important;
    height: 80px !important;
  }
}


/***------------------------------------------
      posted comment
------------------------------------------***/

.another-title {
  margin: 0 auto 20px;
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
}

.another-title span {
  font-size: 1.4rem;
}

.comment-number {
  display: none;
}

.comment-number {
  display: none;
}

.comment-number0 {
  display: block;
  color: rgb(200,200,200);
  font-style: italic;
  text-align: center;
}

.comment-contents:not(:last-of-type) {
  margin: 49px 0;
}

.visitor-name-and-title {
  padding-left: 20px;
  font-weight: bold;
}

.user-box {
  position: relative;
  margin-left: 20px;
  padding: 1em 1em .5em;
  background: rgb(249,240,232);
  font-size: 1.3rem;
}

.icon-position {
  position: absolute;
  top: -20px;
  left: -20px;
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  margin-right: 20px;
  border-radius: 50%;
  background: rgb(207,207,207);
  text-align: center;
}

.user-icon i {
  color: white;
  font-size: 1.7rem;
}

.author-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.comment-body {
  margin: 1em 0;
  padding-left: 20px;
}

.comment-info {
  font-size: 1.2rem;
  text-align: right;
}

.block-and-break {
  display: inline-block;
}

.cm-edit::before,
.cm-reply::before {
  content: "|";
}

.cm-reply::after {
  content: "|";
}

.cm-edit span,
.cm-reply span {
  margin: .4em;
}

.cm-icon {
  margin-left: .4em;
}


/***------------------------------------------
      comment form
------------------------------------------***/

#comment_form {
  margin: auto;
  width: 100%;
  max-width: 650px;
}

#comment_form label {
  display: block;
  padding-bottom: 5px;
  font-size: 1.4rem;
}

.apply {
  display: block;
  margin-bottom: 10px;
  width: 100%;
  padding: .6em;
  border-radius: 2px;
  border: 1px solid rgb(220,220,220);
  background: white;
  outline: none;
  -webkit-appearance: none;
}

#comment {
  display: block;
  width: 100%;
  min-height: 200px;
  margin-bottom: 10px;
  padding: .6em;
  border-radius: 2px;
  border: 1px solid rgb(220,220,220);
  background: white;
  line-height: 1.5;
  outline: none;
  -webkit-appearance: none;
}

.apply:focus,
#comment:focus {
  border-color: rgb(179,179,179);
}

#comment_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/* checkbox */
#no-p input:focus {
  outline: none;
}

#no-p input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#no-p input[type=checkbox] + label {
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
  line-height: 1.5px;
  position: relative;
  left: 0;
}
 
@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-top: -10px;
    width: 18px;
    height: 18px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
  }

  #no-p input[type=checkbox] + label:before {
    border: 1px solid rgb(220,220,220);
    border-radius: 2px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
  }

  #no-p input[type=radio]:checked + label:after {
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background: rgb(51,51,51);/* 注)secretコメントチェックマーク色 (1/3) */
    border-radius: 8px;
    top: 2px;
    left: 5px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    margin-top: -8px;
    width: 16px;
    height: 8px;
    border-bottom: 3px solid rgb(51,51,51);/* 注)secretコメントチェックマーク色 (2/3) */
    border-left: 3px solid rgb(51,51,51);/* 注)secretコメントチェックマーク色 (3/3) */
    left: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

#half-block {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: space-between;
  max-width: 330px;
}

/* send and delete button */
#sendbtn,
#delbtn {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 5px);
  height: 33px;
  margin-top: 20px;
  border-radius: 4px;
  border: 0;
  background: -webkit-linear-gradient(to top, rgb(193,166,149) 34%, rgb(221,209,197) 100%);
  background: linear-gradient(to bottom, rgb(193,166,149) 34%, rgb(221,209,197) 100%);
  color: rgb(101,6,79);
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  box-shadow: 4px 4px 8px rgba(0,0,0,.4);
}


/***------------------------------------------
      trackback
------------------------------------------***/

.op,
#for-trackback-word {
  display: block;
  width: 100%;
  max-width: 600px;
}

.op {
  margin: 30px auto 10px;
  border: 1px solid rgb(220,220,220);/* 注)トラックバックボーダー色 */
  border-radius: 0;
  padding: .5em;
  outline: none;
  font-size: 1.3rem;/* 注)トラックバックフォント大きさ */
}

#for-trackback-word {
  margin: 0 auto;
}

.op:focus {
  border: 1px solid rgb(179,179,179);/* 注)トラックバックフォーカス時ボーダー色 */
}


/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.side-menu ul {
  margin-left: 1.5em;
  list-style-type: disc;
}

.sidebar-style {
  text-align: left;
}

.sidebar-style a:hover {
  color: rgb(51,51,51);/* 注)サイドメニューリンク色 */
}

.side-menu h4 {
  margin: 0 auto 20px;
  font-size: 1.5rem;
  text-align: center;
}

.side-menu a {
  color: rgb(168,0,47);/* 注)サイドメニューリンク色 */
}

.sidebar-style a:hover {
  color: rgb(179,145,138);/* 注)サイドメニューリンク色 */
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* calendar */
.calender {
  margin: auto;
  width: 100%;
  max-width: 340px;
  border-spacing: 3px 6px;
  table-layout: fixed;
  font-size: 12px;
  text-align: center;
}

.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 {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background-color: rgb(179,145,138);
  border-radius: 50%;
  color: white;
  line-height: 28px;
}

.calender td a:hover {
  background: rgb(168,0,47);/* 注)カレンダーリンクホバー時背景色 */
  color: white;
}

/* profile */
 .plugin-myimage {
  margin-bottom: 10px;
  text-align: center !important;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 260px;
}

.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: 2px;
  border: 1px solid rgb(207,207,207);
  background: white;
  outline: none;
  -webkit-appearance: none;
}

.plugin-mail input[type="submit"],
.plugin-search input[type="submit"] {
  border-radius: 2px;
  border: 0;
  background: rgb(179,145,138);
  color: white;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
}

/* search */
.plugin-search {
  margin: 0 auto;
  width: 100%;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 0 2px 3px 0;
  border: 1px solid rgb(100,100,100);/* 公式タグボーダー色 */
  padding: .1em .4em;
}

.plugin-tag a:hover {
  background-color: rgb(179,145,138);
  border-color: rgb(179,145,138);
  color: white;
}


/***------------------------------------------
      index (title list), search page
------------------------------------------***/

.index-p {
  margin: .5em 0;
}

.list-contents:not(:last-of-type) {
  margin: 20px 0;
  border-bottom: 1px solid rgb(220,220,220);
}

.list-entry {
  padding: .5em 0;
  overflow: hidden;
}

.list-title {
  margin: 0 auto;
  font-weight: bolder;
  font-size: 1.5rem;
  line-height: 1.5;
}

.list-title a {
  text-decoration: none;
}

.list-entry-date,
.list-entry-category {
  font-size: 1.2rem;
  text-align: right;
}

/* exept for index page */
.thumbnails {
  float: right;
  position: relative;
  width: 72px;
  height: 72px;
  margin: 0 0 5px 10px;
  overflow: hidden;
  border-radius: 50%;
}

.list-a {
  color: rgba(255,255,255,.7);
}

.search-noimage {
  width: 100%;
  height: 100%;
  background-color: rgb(179,145,138);
  line-height: 72px;
  font-size: 12px;
  text-align: center;
}

/* the number of comment/ trackback */
.number-of-cmtb {
  font-size: 1.2rem;
  text-align: right;
}

.number-of-cmtb li {
  display: inline-block;
  margin-left: 1em;
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
#pagination {
  margin: 50px auto;
  font-size: 12px;
  font-family: 'Times New Roman', serif;
  text-align: center;
}

#pagination li {
  display: inline-block;
  margin: 3px;
  border-radius: 50%;
  vertical-align: top;
}

#pagination .active {
  box-shadow: 1px 0 0 0 rgb(229,229,229), 
              0 1px 0 0 rgb(229,229,229), 
              1px 1px 0 0 rgb(229,229,229),
              1px 0 0 0 rgb(229,229,229) inset, 
              0 1px 0 0 rgb(229,229,229) inset;
}

.light-theme a,
.light-theme span {
  display: -webkit-box;/* fallback old Android */
  display: -ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: rgb(51,51,51);
}

.light-theme a:hover {
  background: rgb(179,145,138);/* 注)汎用ページ送りマウスホバー時背景色 */
  color: white;
}

.prev,
.next {
  font-weight: bolder;
}

.light-theme .current {
  background: rgba(255,255,255,.7);/* 注)汎用ページ送り現在ページ背景色 */
  box-shadow: 0 1px 0 rgba(255,255,255,8),
              0 0 2px rgba(0,0,0,.3) inset;
  color: rgb(51,51,51);
}

.light-theme .ellipse {
  color: rgb(51,51,51);
  font-weight: bold;
}

.light-theme .prev,
.light-theme .next {
  background: rgb(179,145,138);/* 注)汎用ページ送りprev/ next背景色 */
  box-shadow: none;
  color: white;
}

/* article, titlelist */
#pager {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;
  font-size: 12px;
}

#pager-home {
  width: 35px;
  height: 35px;
  margin: 0 10px;
}

#pager-left,
#pager-right {
  flex: 1;
  min-width: 0;
}

#center-a,
#t-prev-a,
#t-next-a {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgb(179,145,138);
  color: white;
}

#t-next-a {
  margin-left: auto;
}

#prev-a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 40px;
}

#next-a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 40px;
  text-align: right;
}

#prev-a::before {
  content: "\2039";
  display: -webkit-box;/* fallback old Android */
  display: -ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 35px;
  margin: auto;
  border-radius: 50px;
  background: rgb(179,145,138);
  color: white;
  font-weight: bold;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#next-a::before {
  content: "\203A";
  display: -webkit-box;/* fallback old Android */
  display: -ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 33px;
  height: 33px;
  margin: auto;
  border-radius: 50px;
  background: rgb(179,145,138);
  color: white;
  font-weight: bold;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#center-a:hover,
#prev-a:hover::before,
#next-a:hover::before,
#t-prev-a:hover,
#t-next-a:hover {
  background: rgb(168,0,47);
}

@media screen and (max-width: 414px) {
  #pagination,
  #pager {
    padding: 0 15px;
  }
}


/***------------------------------------------
      footer
------------------------------------------***/

/* animation */
@-webkit-keyframes slideInUp{0%,50%{opacity:0;-webkit-transform:translateY(30px)}100%{opacity:1;-webkit-transform:translateY(0)}}@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

#page-scroll {
  display: inline-block;
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 100003;
  font-size: 11px;
  text-align: center;
  -webkit-animation: slideInUp .8s;
  animation: slideInUp .8s;
}

#pagetop,
#pagemiddle,
#pagebottom {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(179,171,180,.5);
  border-radius: 50%;
  line-height: 39px;
}

#pagemiddle {
  display: none;
}

#page-scroll a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(150,150,150);
}

@media screen and (max-width: 960px) {
  #page-scroll {
    right: 8px;
    bottom: 130px;
  }
  #pagemiddle {
    display: block;
  }
}

.new {
  margin-left: .4em;
  color: red;
  font-size: 10px;
}

#footer {
  padding: 15px 3px;
  text-align: center;
  line-height: 1.4;
  background: rgba(255,255,255,.5);
}

.foot,
#copyright {
  display: block;
  font-size: 1.2rem;
  text-align: center;
}

#ad1,
#ad2 {
  font-size: 11px;
}





/***------------------------------------------
      blockquote
------------------------------------------***/

blockquote {
  position: relative;
  z-index: 1;
  margin: 3.5em 15px 2em;
  padding-left: 15px;
  border-left: 3px solid rgb(51,51,51);
}

blockquote::before {
  content: "";
  position: absolute;
  left: -15px;
  top: -30px;
  z-index: -1;
  width: 28px;
  height: 28px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAmCAMAAACf4xmcAAAAllBMVEUAAADOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7BbRMgAAAAMXRSTlMAAQIEBQYLDA0SFBYcITE1O0FGW1xfaWxweXt+iIySmpujsr7DzM/T1drc4Ovv8/v96SAr2gAAALtJREFUOMvt0DcSwkAQRNERLN57773Xv//lCKAQu5pFGSR0Nq86mGqRX6bQ6AxH9c8WNE8AkPtkpQPPFMVv1RuxWtzKRCmIz9LnSObPlmLdx7WspKL342ZCAHrvQyhWA2Bm7aXYBIC8JNgaYGOvr9gFYCpJBsBYkgyArSTZY6FB1hhjTOA1rCzyHrOJq8ccYiGquUSgWoyMaPavORYqNcV2joSBaNZyaCKiWWplyTEjHmvvX3DqGxGPfT93kFSTdVAqkgEAAAAASUVORK5CYII=) center center /cover no-repeat;
  color: rgb(206,206,206);
}


/***------------------------------------------
      personal settings
------------------------------------------***/

/* shadow for image */
.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2); /* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}

.emoji {
  vertical-align: middle;
}