@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: Synchronicity
* The first edition: 2017.1.6
* 2017.1.25 - SNSシェアリンクをエンコード
* 2017.4.17 - iPhoneでfixedされたinputが固定されないバグのApple修正に伴いhackを削除
* 2017.9.22 - SSL化に伴うURL正規化
* 2018.1.3 - リセットCSSを最小限に, html構造及びCSS装飾修正, その他変更多数
* 2018.12.25 - スクロールアンカー用JSの変更, CSS一部追加(Adsenseを掲載しやすく調整), 管理人コメントにプロフィールアイコン表示追加など
* Latest update: 2019.7.31 - 管理画面経由で管理人名を装飾した際にテンプレートの返信ボタンレイアウトが崩れる件を修正, コメント欄管理人ハンドルネームにクラス名を追加(潜在的カスタマイズ), 記事部分の上下余白をpaddingからmarginに変更
*/

/***------------------------------------------
      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,textarea{font-size:16px}pre,code{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}


/***------------------------------------------
      date
------------------------------------------***/

.month01:before{content:"January"}.month02:before{content:"February"}.month03:before{content:"March"}.month04:before{content:"April"}.month05:before{content:"May"}.month06:before{content:"June"}.month07:before{content:"July"}.month08:before{content:"August"}.month09:before{content:"September"}.month10:before{content:"October"}.month11:before{content:"November"}.month12:before{content:"December"}


/***------------------------------------------
      link
------------------------------------------***/

a {
  text-decoration: none;
  color: rgb(177,158,149);/* 注)基本リンク色 */
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

a:hover {
  color: rgb(51,51,51);
}


/***------------------------------------------
      layout
------------------------------------------***/

html {
  margin: 0;
  font-size: 75.0%;
}

body {
  margin: 0;
  background-color: white;
  color: rgb(51,51,51);
  word-wrap: break-word;
  font: 1.4rem/1.9 'Trirong', '游ゴシック体', '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);
}

/* animation */
@-webkit-keyframes fadeIn{0%,50%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%,50%{opacity:0}100%{opacity:1}}

#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: 1500px;
  padding: 70px 60px 80px;
}

#primary {
  -webkit-flex: 1;
  flex: 1;
  max-width: calc(100% - 50px - 300px);
  min-width: 0;
  margin-right: 50px;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

#secondary {
  width: 300px;
  line-height: 1.8;
  font-size: 1.2rem;
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
}

.side-menu {
  margin-bottom: 20px;
  width: 300px;
  background-color: rgb(248,245,238);/* 注)サイドメニュー背景色 */
  padding: 20px;
}

@media screen and (max-width: 920px) {
  #float-container {
    display: block;
  }
  #primary {
    max-width: 100%;
    margin: auto;
  }
  #secondary {
    margin: auto;
    width: 100%;
  }
  #reserve {
    display:-webkit-box;/* fallback old Android */
    display:-ms-flexbox;/* fallback ie10 */
    display: -webkit-flex;/* fallback old safari */
    display: flex;
    margin: auto;
    -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;
  }
}
@media screen and (max-width: 1300px) {
  #reserve {
    display: block;
  }
  .side-menu {
    margin: 0 auto 20px;
    width: 100%;
    max-width: 450px;
  }
}
@media screen and (max-width: 1300px) {
  #float-container {
    padding: 50px 30px 80px;
  }
}
@media screen and (max-width: 1300px) {
  #float-container {
    padding: 40px 15px 80px;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

#header-banner {
  margin: 0 auto;
  padding: 70px 0;
}

@media screen and (max-width: 1300px) {
  #header-banner {
    padding: 50px 0;
  }
}
@media screen and (max-width: 1300px) {
  #header-banner {
    padding: 40px 0;
  }
}

#blog-name-container {
  margin: auto;
  width: 100%;
  max-width: 1300px;
  line-height: 1.4;
  padding: 0 60px;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  #blog-name-container {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1300px) {
  #blog-name-container {
    padding: 0 15px;
  }
}

#blog-title {
  margin: 0 auto 15px;
  max-width: 850px;
  font: bolder 2.2rem/1.4 'Trirong', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

#blog-title a {
  color: rgb(51,51,51);/* 注)ブログタイトルリンク色 */
}

#site-description {
  margin: auto;
  max-width: 1300px;
  font-size: 1.2rem;
}


/***------------------------------------------
      breadcrumbs
------------------------------------------***/

#breadcrumbs {
  margin: auto;
  max-width: 1300px;
  line-height: 1.5;
  font-size: 1.2rem;
}

#breadcrumbs li {
  display: inline-block;
}

#breadcrumbs a {
  text-decoration: underline;
}

#breadcrumbs span {
  margin: 0 .5em;
}


/***------------------------------------------
      global navigation
------------------------------------------***/

.navi-menu {
  position: -webkit-sticky;
  position: sticky;
  z-index: 3000;
  top: 0;
  margin: auto;
  width: 100%;
  background-color: white;
  text-align: center;
}

.navi-menu-adjust {
  top: 27px;
}

#navi-sizing {
  margin: auto;
  width: 100%;
  max-width: 1500px;
  padding: 0 60px;
}

@media screen and (max-width: 666px) {
  #navi-sizing {
    padding: 0 30px;
  }
}
@media screen and (max-width: 414px) {
  #navi-sizing {
    padding: 0 15px;
  }
}

.sp-navi {
  border-top: 2px solid rgb(51,51,51);/* 注)グローバルナビ上ボーダー */
  border-bottom: 2px solid rgb(51,51,51);/* 注)グローバルナビ下ボーダー */
}

#navi-list {
  display: inline-block;
  position: relative;
}

#navi-list li {
  display: inline-block;
  line-height: 40px;
  padding: 0 2em;
  vertical-align: middle;
  font-size: 12px;
}

#navi-list li:first-of-type {
  padding-left: 0;
}

#navi-list li:last-of-type {
  padding-right: 0;
}

#navi-list .pc-hide,
#navi-list li .pc-hide {
  display: none;
}

#navi-list li:not(#expand-form) {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 768px) {
  #navi-list li {
    padding: 0 1em;
  }
  #navi-list li:first-of-type {
    padding-left: 0;
  }
  #navi-list li:last-of-type {
    padding-right: 0;
  }
}

#navi-list .pc-hide {
  display: none;
}

#navi-list li a {
  color: rgb(51,51,51);
}

/* site search */
#expand-form {
  margin: 0;
  width: 35px;
  height: 40px;
}

#search-btn {
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  line-height: 40px;
  position: absolute;
  top: 0;
  right: 2px;
  text-align: center;
}

#search-btn i {
  color: rgb(51,51,51);
}

#search-form {
  margin: 0;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

#search-form-input {
  width: 35px;
  height: 40px;
  background-color: rgb(250,250,250);
  border: none;
  border-radius: 22px;
  color: rgb(51,51,51);
  cursor: pointer;
  opacity: 0;
  outline: none;
  padding: 0 5px 0 10px;
  position: absolute;
  top: 0;
  right: 0;
  transition: all .5s;
  z-index: 5;
}

#search-form-input:focus {
  width: 100%;
  cursor: text;
  opacity: 1;
}

#search-form-input::-webkit-input-placeholder {
  color: rgb(51,51,51);
  font-family: 'Trirong', serif;
  font-size: 12px;
  font-style: italic;
}

#search-form-input::-moz-placeholder {
  color: rgb(51,51,51);
  font-family: 'Trirong', serif;
  font-size: 12px;
  font-style: italic;
}

#search-submit {
  display: none;
}

/* hamburger button */
.mobile-toggle {
  display: none;
}

/* navi breakpoint 2/2
@media screen and (max-width: ここに横幅px) {
  .mobile-toggle {
    display: block;
    margin: auto;
    cursor: pointer;
    height: 40px;
    border-top: 2px solid rgb(51,51,51);
    border-bottom: 2px solid rgb(51,51,51);
    padding-top: 9px;
    position: relative;
    z-index: 100005;
    text-align: center;
  }
  .mobile-toggle span {
    display: block;
    width: 20px;
    margin: 0 auto 5px;
    height: 2px;
    background-color: rgb(51,51,51);
    border-radius: 1000px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  .open-navi span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-315deg);
    transform: translateY(7px) rotate(-315deg);
  }
  .open-navi span:nth-of-type(2) {
    opacity: 0;
  }
  .open-navi span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
  }
  .open-navi {
    border-bottom: 0;
  }
  .navi-menu {
    height: auto;
  }
  .sp-navi {
    display: none;
    width: 100%;
    height: auto;
    max-height: 400px;
    border-top: 0;
    border-bottom: 2px solid rgb(51,51,51);
    overflow-y: auto;
    padding: 30px 0 40px;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }
  #navi-list {
    display: block;
    text-align: center;
  }
  #navi-list li {
    margin: auto;
    display: block;
    line-height: 1.3;
    padding: 1em;
  }
  #navi-list li:first-of-type {
    padding-left: 1em;
  }
  #navi-list li:last-of-type {
    padding-right: 1em;
  }
  #expand-form {
    margin: auto;
    width: 90%;
    max-width: 380px;
    height: auto;
  }
  #search-form {
    position: relative;
  }
  #search-form-input {
    width: 100%;
    border: 1px solid rgb(220,220,220);
    border-radius: 0;
    opacity: 1;
    position: static;
  }
  #search-btn {
    display: none;
  }
}
*/


/***------------------------------------------
      top page and individual
------------------------------------------***/

.main-body {
  margin-bottom: 70px;
}

/* article header(common) */
.entry-header {
  margin: 0 auto 10px;
  background-color: rgb(248,245,238);/* 注)各記事ヘッダー背景色 */
  border-bottom: 2px solid rgb(51,51,51);/* 注)各記事ヘッダー吹き出しボーダー */
  line-height: 1.4;
  padding: 15px;
  position: relative;
  text-align: center;
}

.entry-header:before,
.entry-header:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  line-height: 1.4;
  position: absolute;
  top: 100%;
  left: 50%;
}

.entry-header:before {
  margin-left: -12px;
  border-color: rgba(51,51,51,0);
  border-top-color: rgb(51,51,51);/* 注)各記事ヘッダー吹き出しボーダーの色を変更した方はここも変更 */
  border-width: 12px;
}
.entry-header:after {
  margin-left: -9px;
  border-color: rgba(248,245,238,0);
  border-top-color: rgb(248,245,238);/* 注)各記事ヘッダー背景色を変更した方はここも変更 */
  border-width: 9px;
}

.entry-title {
  margin: 0 auto 5px;
  font-size: 1.6rem;
  font-weight: bolder;
}

.entry-title a {
  color: rgb(51,51,51);
}

.entry-title a:hover {
  color: rgb(177,158,149);
}

/* category link and the number of comments */
.header-info-ul {
  font-size: 1.2rem;
}

.header-info-ul li {
  display: inline-block;
  padding-right: .6em;
}

.header-info-ul li:last-of-type {
  padding-right: 0;
}

.header-info-ul a,
.header-info-ul span {
  margin-left: .3em;
}

.entry-datetime {
  display: block;
  padding-right: .1em;
  font-size: 1.2rem;
  text-align: right;
  font-style: italic;
}

.contents {
  padding: 20px 0;
}

.inner-contents {
  margin: 20px 0;
}

.height-adjust {
  margin-top: -44px;
  padding-top: 64px;
}

.inner-contents a:hover {
  text-decoration: underline;
}

/* back to default */
.inner-contents p {
  margin: 1.9em 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;
}

/* read more */
.read-more {
  margin: 30px auto;
  text-align: center;
}

.read-more a {
  display: inline-block;
  background-color: rgb(51,51,51);/* 注)READ MORE背景色 */
  color: white;
  padding: .5em 2em;
}

.read-more a:hover {
  background-color: rgb(177,158,149);/* 注)READ MOREホバー時背景色 */
  text-decoration: none;
}

#postscript {
  margin-top: -40px;
  padding-top: 40px;
}

/* user tag */
.entry-tag {
  margin-top: 30px;
  font-size: 1.2rem;
}

.entry-tag a {
  display: inline-block;
  margin: 2px 2px 2px 0;
  padding: .1em 1em;
  border: 1px solid rgb(238,238,240);/* 注)記事下タグ ボーダー色 */
}

.entry-tag a:hover {
  background-color: rgb(51,51,51);/* 注)記事下タグ ホバー時背景色 */
  color: white;
  text-decoration: none;
}

/* article footer SNS share */
.entry-footer {
  text-align: right;
}

.entry-footer-sns-ul li {
  display: inline-block;
  font-size: 1.3rem;
}

.entry-footer-sns-ul li a {
  display: block;
  color: rgb(51,51,51);
  padding: 0 .8em;
}

.hatena {
  font-weight: 700;
  font-family: 'Verdana', sans-serif;
}

/* SNS brand color */
.c-facebook:hover {
  color: rgb(59,89,152);
}

.c-twitter:hover {
  color: rgb(73,171,242);
}

.c-pinterest:hover {
  color: rgb(206,15,25);
}

.c-hatena:hover {
  color: rgb(61,142,216);
}

.c-pencil:hover,
.go-to-page:hover {
  color: rgb(231,184,187);
}


/***------------------------------------------
      posted comment
------------------------------------------***/

.another-title {
  margin: 0 auto 30px;
  background-color: rgb(248,245,238);/* 注)comment, trackback, indexなどの見出し背景色 */
  border-bottom: 2px solid rgb(51,51,51);/* 注)comment, trackback, indexなどの見出し・コメントなどの吹き出しボーダー色 */
  line-height: 1.4;
  padding: 12px 5px 10px;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
}

.another-title:before,
.another-title:after {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  line-height: 1.4;
  position: absolute;
  top: 100%;
  left: 50%;
}

.another-title:before {
  margin-left: -12px;
  border-color: rgba(51,51,51,0);
  border-top-color: rgb(51,51,51);/* 注)comment, trackback, indexなどの見出し・コメントなどの吹き出しボーダー色を変更した方はここも変更 */
  border-width: 12px;
}

.another-title:after {
  margin-left: -9px;
  border-color: rgba(248,245,238,0);
  border-top-color: rgb(248,245,238);/* 注)comment, trackback, indexなどの見出し・コメントなどの見出し背景色を変更した方はここも変更 */
  border-width: 9px;
}

.border-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-weight: bold;
  font-size: 1.4rem;
}

.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(207,207,207);
  color: white;
  font-size: 1.8rem;
}

.user-icon:before {
  content: "\f007";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
}

.author-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
}

.comment-title {
  margin-bottom: 5px;
}

.comment-body {
  padding: 10px 0;
}

.visitor-fotter-info {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: right;
}


/***------------------------------------------
      comment form
------------------------------------------***/

#comment_form {
  margin: 0 auto;
  width: 100%;
  padding-top: 40px;
  vertical-align: middle;
  text-decoration: none;
}

#comment_form label {
  display: block;
  padding-bottom: 5px;
  font-size: 1.2rem;/* 注)コメント投稿フォームラベルフォント大きさ */
}

#comment_form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 0;
  border: 1px solid rgb(150,150,150);/* 注)コメントフォーム各項目ボーダー色 */
  background: rgb(250,250,250);/* 注)コメントフォーム各項目背景色 */
  outline: none;
  -webkit-appearance: none;
}

#comment_form input:focus,
#comment:focus {
  background-color: white;
  border: 1px solid rgb(51,51,51);
}

#comment {
  width: 100%;
  min-height: 200px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 0;
  border: 1px solid rgb(150,150,150);/* 注コメントフォームテキストエリアボーダー色*/
  background: rgb(250,250,250);/* 注コメントフォームテキストエリア背景色 */
  line-height: 1.5;
  outline: none;
  -webkit-appearance: none;
}

#comment_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(250,250,250) inset;
}

#comment_form #password {
  width: 50%;
}

#trackback {
  margin-top: -44px;
  padding-top: 44px;
  position: relative;
}

/* 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);/* 注)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-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);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  margin-top: 20px;
  width: 156px;
  height: 36px;
  background-color: rgb(51,51,51);/* コメントsend, deleteボタン背景色 */
  border: none;
  color: white;/* 注)send, deleteボタンテキスト色 */
  cursor: pointer;
  font-size: 1.4rem;/* 注)send, deleteボタンフォント大きさ */
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  background-color: rgb(81,81,81);/* コメントsend, deleteボタンボバー時背景色 */
}

#sendbtn {
  margin-right: 1%;
}

#delbtn {
  margin-left: 1%;
}

.comment-info {
  text-align: right;
}

.comment-info li {
  display: inline-block;
}

.comment-info li:not(:last-of-type)::after {
  content: "|";
  margin: 0 .5em 0 .3em;
}


/***------------------------------------------
      trackback
------------------------------------------***/

.op,
#for-trackback-word {
  display: block;
  width: 100%;
}

.op {
  margin: 0 auto 10px;
  border: 1px solid rgb(220,220,220);
  border-radius: 0;
  outline: none;
  padding: .5em;
}

.op:focus {
  border: 1px solid rgb(179,179,179);
}

#for-trackback-word {
  margin: 0 auto;
}


/***------------------------------------------
      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: "You may also like";/* 注)関連記事 タイトル変更はここです */
  display: block;
  margin: auto;
  width: 100%;
  padding-top: 20px;
  position: absolute;
  top: -50px;
  z-index: 3;
  font-size: 1.6rem;
  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: 33.33%;
  height: 88px;
  float: left;
}

@media screen and (max-width: 1540px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 50%;
  }
}
@media screen and (max-width: 1200px) {
  #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";
  width: 80px;
  height: 80px;
  background-color: rgb(248,245,238);/* 注)No image 関連記事サムネイル背景色 */
  border-radius: 1px;
  color: rgb(51,51,51);/* 注)No image 関連記事サムネイル文字色 */
  line-height: 80px;
  position: absolute;
  z-index: 2;
  font-size: 11px;
  text-align: center;
}

#fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
  width: 80px !important;
  height: 80px !important;
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img {
  width: 80px !important;
  height: 80px !important;
}

@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;
  }
}


/***------------------------------------------
      index (title list), search page
------------------------------------------***/

.list-title {
  margin: 0 auto;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: bolder;
}

.list-title a {
  text-decoration: none;
}

.list-entry {
  overflow: hidden;
  padding: 5px 0;
}

.list-entry-date,
.list-entry-category {
  font-size: 1.2rem;
  text-align: right;
}

/* only for search page */
.list-a {
  margin-left: 10px;
  margin-bottom: 5px;
  width: 72px;
  height: 72px;
  color: rgb(51,51,51);
  float: right;
}

.thumbnails {
  display: inline-block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  position: relative;
}

.search-noimage {
  width: 100%;
  height: 100%;
  background-color: rgb(248,245,238);/* 注)No image 検索結果サムネイル背景色 */
  line-height: 72px;
  font-size: 11px;
  text-align: center;
}

/* the number of comment/ trackback */
.number-of-cmtb-ul {
  text-align: right;
}

.number-of-cmtb-ul li {
  display: inline-block;
  margin-left: 1em;
  font-size: 1.2rem;
}

/* only for search */
.hit-number {
  display: none;
  color: rgb(200,200,200);
  line-height: 1.1;
  padding: 20px 0;
  text-align: center;
  font-size: 8rem;
}

.hit0 span {
  color: rgb(200,200,200);
  font-size: 1.5rem;
}

.hit0 {
  display: block;
}


/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.sidebar-style a {
  color: rgb(100,100,100);/* 注)サイドメニュー内リンク色 */
}

.side-menu h4 {
  margin: 0 auto 20px;
  background-color: rgb(248,245,238);/* 注)サイドメニューの見出し背景色 */
  border-bottom: 2px solid rgb(51,51,51);/* 注)サイドメニューの見出しボーダー色 */
  line-height: 1.4;
  padding-bottom: 10px;
  position: relative;
  font-size: 1.4rem;
  text-align: center;
}

.side-menu h4:after,
.side-menu h4:before {
  content: "";
  width: 0;
  height: 0;
  border: solid transparent;
  position: absolute;
  top: 100%;
  left: 50%;
}

.side-menu h4:before {
  margin-left: -10px;
  border-color: rgba(51,51,51,0);
  border-top-color: rgb(51,51,51);/* 注)サイドメニューの見出しボーダー色を変更した方はここも変更 */
  border-width: 10px;
}
.side-menu h4:after {
  margin-left: -7px;
  border-color: rgba(248,245,238,0);
  border-top-color: rgb(248,245,238);/* 注)サイドメニューの見出し背景色を変更した方はここも変更 */
  border-width: 7px;
}

.side-menu ul {
  margin-left: 1.3em;
  list-style-type: circle;
}

.side-menu ol {
  margin-left: 1.3em;
  list-style-type: decimal;
}

#sidebar-style-sns-ul {
  padding-top: 10px;
  text-align: center;
}



/* SNS on side menu */
#sidebar-style-sns-ul {
  margin: 0 auto;
  list-style: none;
  padding: 0;
  text-align: center;
}

#sidebar-style-sns-ul li {
  display: inline-block;
  margin: 0 2px 2px;
}

#sidebar-style-sns-ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: rgb(51,51,51); /* 注)サイドメニューSNS背景色 */
  color: white;
}

/* SNS brand color */
#s-facebook:hover {
  background-color: rgb(59,89,152);
}

#s-twitter:hover {
  background-color: rgb(73,171,242);
}

#s-instagram:hover {
  background-color: rgb(63,114,155);
}

#s-pinterest:hover {
  background-color: rgb(206,15,25);
}

#s-google-plus:hover {
  background-color: rgb(221,75,57);
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* calendar */
.calender {
  margin: 0 auto;
  width: 250px;
  border-spacing: 3px 6px;
  table-layout: fixed;
  font-size: 12px;
  text-align: center;
}

.calender caption {
  margin-bottom: 10px;
}

.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: 28px;
  padding: 0;
}

.calender td a {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(177,158,149);/* 公式プラグインカレンダー リンクボーダー */
  border-radius: 50%;
}

.calender td a:hover {
  background-color: rgb(51,51,51);/* 公式プラグインカレンダー リンクホバー時背景色 */
  border-color: rgb(51,51,51);/* 公式プラグインカレンダー リンクホバー時ボーダー色(上記背景色と同色) */
  color: white;/* 公式プラグインカレンダー リンクホバー時文字色 */
}

/* profile */
 .plugin-myimage {
  text-align: center !important;
  margin-bottom: 10px;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: 0 auto;
  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"] {
  display: inline-block;
  width: 100% !important;
  padding: 5px 0;
  border-radius: 2px;
  border: 0;
  background: rgb(51,51,51);/* 注)サイドメニュー内input ボタン背景色 */
  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 1px 3px 0;
  border: 1px solid rgb(177,158,149);/* 注)公式プラグインタグ ボーダー色 */
  padding: .2em 1em;
}

.plugin-tag a:hover {
  background-color: rgb(177,158,149);/* 注)公式プラグインタグ ホバー時背景色 */
  color: white;
  text-decoration: none;
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
.simple-pagination {
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.simple-pagination ul {
  text-align: center;
}

.simple-pagination li {
  display: inline-block;
  margin: 0 2px 2px;
  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: inline-block;
  width: 35px;
  height: 35px;
  background: transparent;
  color: rgb(51,51,51);
  line-height: 35px;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;/* 注)汎用ページ送りフォント大きさ */
}

.light-theme a:hover {
  background-color: rgb(51,51,51);/* 注)汎用ページ送りマウスホバー時背景色 */
  color: white;
  opacity: 1;
}

.prev,
.next {
  border: none !important;
  font-weight: bolder;
}

.light-theme .current {
  background-color: rgb(245,245,245);/* 注)汎用ページ送り現在ページ背景色 */
  color: rgb(51,51,51);
}

.light-theme .ellipse {
  font-weight: bold;
  color: rgb(51,51,51);
}

.light-theme .prev,
.light-theme .next {
  width: auto;
  background-color: rgb(51,51,51);/* 注)汎用ページ送りprev/ next背景色 */
  box-shadow: none;
  color: white;
  padding: 0 1em;
}

/* article */
.posted-pager {
  display: table;
  table-layout: fixed;
  margin: 0 auto 40px;
  width: 100%;
  font-size: 12px;/* 注)個別記事ページ送りフォント大きさ */
}

.page-left-cell,
.page-center-cell,
.page-right-cell {
  display: table-cell;
  vertical-align: middle;
}

.page-center-cell {
  text-align: center;
}

.page-right-cell {
  text-align: right;
}

.prev-a {
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  position: relative;
  text-align: left;
}

.prev-a:before {
  content: "\f104";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  margin: auto;
  background: rgb(51,51,51);/* 注)個別記事prevページ送り背景色 */
  color: white;
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.page-center-cell {
  width: 50px;
  height: auto;
  text-align: center;
}

.center-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: rgb(51,51,51);
  color: white;
}

.center-a:hover {
  color: white;
}

.next-a {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 40px;
  position: relative;
  text-align: right;
}

.next-a:before {
  content: "\f105";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  margin: auto;
  background: rgb(51,51,51);/* 注)個別記事nextページ送り背景色 */
  color: white;
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

/* side pagination */
.side-pager-left,
.side-pager-right {
  width: 180px;
  height: 80px;
  opacity: 0;
  position: fixed;
  z-index: 100003;
  top: 40%;
  font-size: 12px;/* 注)サイドページ送りフォント大きさ */
  -webkit-transition: opacity .7s ease;
  transition: opacity .7s ease;
  pointer-events: none;
}

.side-pager-left {
  left: -157px;
}

.side-pager-right {
  right: -157px;
}

.page-div-right,
.page-div-left {
  display: block;
  margin: 0;
  width: 180px;
  height: 80px;
}

.side-pager-right a,
.side-pager-left a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
  word-break: break-all;
  -webkit-transition: none;
  transition: none;
}

.page-table {
  display: table;
  width: 100%;
  height: 100%;
}

.circle-cell {
  display: table-cell;
  width: 80px;
  height: 80px;
  vertical-align: top;
}

.circle {
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgba(51,51,51,.2);/* 注)個別記事ページサイドページ送りnext, prev背景色 */
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
}

.title-cell {
  display: table-cell;
  width: 100%;
  padding: 0 10px;
  vertical-align: middle;
}

.title-cell span {
  display: block;
  width: 100%;
  max-height: 80px;
  line-height: 1.4;
  overflow: hidden;
}

.appear {
  opacity: 1;
  pointer-events: auto;
}

/* title list */
.titlelist-pager {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 40px;
}

.t-pager-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background: rgb(51,51,51);
  color: white;
}

.t-pager-a:hover {
  color: white;
}


/***------------------------------------------
      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: 60px;
  bottom: 90px;
  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,.4);
  border: 1px solid rgba(179,171,180,.5);
  background: rgba(255,255,255,.4);
  line-height: 39px;
}

#pagemiddle {
  display: none;
}

#page-scroll a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 920px) {
  #page-scroll {
    right: 8px;
    bottom: 130px;
  }
  #pagemiddle {
    display: block;
  }
}

.new {
  margin-left: .5em;
  color: red;
  font-size: 1.1rem;
}

#footer {
  line-height: 1.4;
  padding: 10px 5px;
  font-size: 1.2rem;
  text-align: center;
}

#footer a:hover {
  color: rgb(150,150,150);
}

.foot,
#copyright {
  display: block;
  font-size: 12px;
  text-align: center;
}

#ad1,
#ad2 {
  color: rgb(150,150,150);
  font-size: 11px;
}


/***------------------------------------------
      blockquote
------------------------------------------***/

blockquote {
  margin: 4em 15px 3em;
  border-left: 3px solid rgb(51,51,51);
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

blockquote:before {
  position: absolute;
  left: -15px;
  top: -30px;
  z-index: -1;
  content: "\f10d";
  color: rgb(206,206,206);
  font: 700 200%/1 'Font Awesome 5 Free';
}


/***------------------------------------------
      personal settings
------------------------------------------***/

/* 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%;
}

/* shadow for image */
.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2);/* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}

.emoji {
  vertical-align: middle;
}