@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: Valparaiso
* First edition: 2015.8.17
* 2015.8.27 - タブレットでの挙動再調整, ページTOP/ BOTTOMボタン変更, Javascript軽量化, その他微調整
* 2015.9.9 - 公式化に伴うOGP削除
* 2015.12.12 - RSS新着サムネイルでタイトルリンクが記事幅からはみ出す問題に対処
* 2016.1.9 - フッターの構造変更, タイトルタグ微調整
* 2016.9.9 - リストマーカーの位置を調整, 最優先フォントを游ゴシック体に変更, ページ遷移動作をJSからCSSに変更(軽量化・高速化)
* latest update: 2016.10.17 - 全体レイアウト調整, 関連記事サムネイル整形, その他微調整
*/


/***------------------------------------------
      reset
------------------------------------------***/

html, body, div, span, object, iframe,
p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, p,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ul, ol {
  list-style-type: none;
}

strong, b {
  font-weight: bold;
}

i {
  font-style: italic;
}

address, small, time {
  display: block;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  word-wrap: break-word;
}

blockquote, q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  background: transparent;
  outline: none;
}

table {
  word-break: break-all;
}

img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  height: auto;
}

iframe, embed {
  max-width: 100%;
}

textarea {
  max-width: 100%;
}

input[type="text"], 
input[type="password"],  
input[type="search"], 
textarea {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
}

select {
  outline: none;
  border-radius: 0;
  font-size: inherit;
}

input[type="submit"] {
  outline: none;
  -webkit-appearance: button;
  border-radius: 0;
  font-size: inherit;
}

pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: 'Menlo', 'consolas', 'Courier';
}

* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* fc2 */
.fc2_footer {
  margin: 20px 0;
}

#fc2_text_ad {
  font-size: 12px;
}

#change_mobile {
  display: none;
}


/***------------------------------------------
      clearfix
------------------------------------------***/

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}


/***------------------------------------------
      blockquote
------------------------------------------***/

blockquote {
  margin: 2em 15px;
  border-left: 3px solid rgb(51,51,51);
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-size: 500%;
  color: rgb(206,206,206);
  line-height: 1em;
  font-family: 'Times New Roman', 'Hiragino Kaku Gothic Pro W3', 'Meiryo', 'sans-serif';
  position: absolute;
  left: -15px;
  top: -30px;
  z-index: -1;
}


/***------------------------------------------
      common
------------------------------------------***/

span.month01:before {
  content: "January";
}
span.month02:before {
  content: "February";
}
span.month03:before {
  content: "March";
}
span.month04:before {
  content: "April";
}
span.month05:before {
  content: "May";
}
span.month06:before {
  content: "June";
}
span.month07:before {
  content: "July";
}
span.month08:before {
  content: "August";
}
span.month09:before {
  content: "September";
}
span.month10:before {
  content: "October";
}
span.month11:before {
  content: "November";
}
span.month12:before {
  content: "December";
}


/***------------------------------------------
      link
------------------------------------------***/

a {
  color: rgb(179,154,100); /* 注)記事内のリンク色 */
  text-decoration: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}


/***------------------------------------------
      layout
------------------------------------------***/

html,
body {
  height: 100%;
}

body { /* 注)基本フォント関連 */
  background-color: rgb(0,255,204);
  color: rgb(51,51,51);
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS P Gothic","Osaka",Verdana,Arial,Helvetica,sans-serif; /* フォントの種類 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}

body:before {
  content: "";
  background: url(https://blog-imgs-86-origin.fc2.com/c/l/i/clix225/4.gif) center center /cover no-repeat; /* 注)ヘッダー画像変更はここ */
  width: 100%;
  height: 700px; /* 注)ヘッダー画像下が寸足らずな場合はこの数字を増やす */
  top: 0;
  left: 0;
  position: fixed;
  z-index: -1;

}

#wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 80%;
}

#white-bg-container {
  width: 100%;
  background-color: white;
  padding-top: 10px;
}

#float-container {
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
  background-color: white;
  padding: 10px 0;
}

@media screen and (max-width: 1120px) {
  #float-container {
    width: 90%;
  }
}
@media screen and (max-width: 880px) {
  #float-container {
    width: 98%;
  }
}
@media screen and (max-width: 768px) {
  #float-container {
    width: 100%;
  }
}

#primary {
  margin-right : -300px;
  width: 100%;
  float : left;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #primary {
    margin: 0 auto;
    max-width: 650px;
    float : none;
  }
}

#main {
  margin-right: 330px;
}

@media screen and (max-width: 768px) {
  #main {
    margin: 0 auto;
  }
}

#secondary {
  width: 300px;
  float: left;
  line-height: 1.8;
  padding-bottom: 50px;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #secondary {
    margin: 0 auto;
    width: 100%;
    float: none;
  }
}

/* animation */
@-webkit-keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

#banner,
#another-banner {
  margin: 0 auto;
  width: 100%;
  height: auto;
  text-align: center;
}

#blog-name-container {
  margin: 0 auto;
  width: 100%;
  background-color: white;
  line-height: 1.3;
  padding: 50px 15px;
}

#blog-title {
  margin: 0 auto;
  display: inline-block;
  width: auto;
  max-width: 800px;
  border-bottom: 1px solid rgb(179,154,100);
  padding-bottom: 5px;
  font: bold 25px/1.3 'Droid Serif', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
  text-shadow: 2px 4px 3px rgba(0,0,0,.2);
}

@media screen and (max-width: 768px) {
  .blog-title { /* 注)ブログタイトルフォントスマホサイズ */
    font-size: 22px;
  }
}

#blog-title a { /* 注)ブログタイトルフォント関連 */
  color: rgb(0,0,0);
}

#sub-title { /* 注)サブタイトルフォント関連 */
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
  font-size: 14px;
  padding-top: 15px;
}

#photo-blank {
  display: table;
  table-layout: fixed;
  height: 250px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #photo-blank {
    height: 250px;
  }
}

#welcome-blank {
  display: table-cell;
  color: darkgray;
  vertical-align: middle;
  font-size: 28px;
  text-shadow: 2px 4px 3px rgba(0,0,0,.2);
}

@media screen and (max-width: 768px) {
  #welcome-blank {
    font-size: 25px;
  }
}

#navigation-container {
  width: 100%;
  background-color: rgb(51,51,51);
  padding: 10px 2px;
}

#navigation-container ul li {
  display: inline-block;
}

#navigation-container ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: white;
  padding: 0 2em;
  vertical-align: middle;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  #navigation-container ul li a {
    padding: 0 1em;
    font-size: 13px;
  }
}

#navigation-container ul li a:hover {
  color: rgb(179,154,100);
}

.both-border {
  border-left: 1px solid silver;
  border-right: 1px solid silver;
}

.right-border {
  border-right: 1px solid silver;
}

#navigation-container ul .pc-hide {
  display: none;
}


/***------------------------------------------
      carousel slider
------------------------------------------***/

.owl-carousel {
  margin: 0 auto;
  max-width: 1300px;
}

.disabled {
  display: none;
}

.owl-prev,
.owl-next {
  display: inline-block;
}

.owl-nav {
  margin-top:10px;
  text-align:center;
  -webkit-tap-highlight-color:transparent
  }

.owl-nav [class*=owl-] {
  display:inline-block;
  margin: 15px;
  border: 1px solid rgb(179,154,100);
  color: black;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 14px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.owl-nav [class*=owl-]:hover {
  background: rgb(179,154,100);
  color: white;
  text-decoration:none
}

.owl-nav .disabled {
  cursor: default
  opacity: .5;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display:inline
}

.owl-dot span {
  margin: 5px 7px;
  width: 10px;
  height: 10px;
  background: rgb(214,214,214);
  border-radius: 30px;
  display: block;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
}

.owl-dots .active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: rgb(179,154,100);
}

#crousel-title {
  margin-bottom: 20px;
  position: relative;
  font-size: 20px;
  text-align: center;
}

#crousel-title span {
  background-color: white;
  padding: 0 1em;
  position: relative;
  z-index: 1;
}

#crousel-title:before {
  content: "";
  width: 100%;
  height: 6px;
  border-top: 3px solid rgb(179,154,100);
  border-bottom: 1px solid rgb(179,154,100);
  position: absolute;
  left: 0;
  bottom: 13px;
}

.item {
  position: relative;
}

.item > span {
  display: block;
  color: white;
  position: absolute;
  top: 5px;
  left: 15px;
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
}

.item a {
  display: block;
  width: 100%;
  height: 100%;
  outline: 1px solid rgb(179,154,100);
  outline-offset: -6px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.black-mask {
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.black-mask > span {
  display: table-cell;
  color: white;
  vertical-align: middle;
  font-size: 50px;

}

.item a:hover .black-mask {
  opacity: .6;
}


/***------------------------------------------
      entry
------------------------------------------***/

.main-body {
  margin: 0 auto 30px;
  width: 100%;
  background-color: white;
  border: 1px solid rgb(179,154,100);
  outline: 1px solid rgb(179,154,100);
  outline-offset: -6px;
  padding: 20px 30px;
}

.element-header {
  line-height: 1.3;
}

.element-category {
  font-size: 12px;
}

.element-title {
  margin: 0 auto;
  padding: 10px 0;
  font-size: 17px;
  font-weight: normal;
}

.element-title a {
  color: rgb(0,0,0);
}

.element-title a:hover {
  color: rgb(179,154,100);
}

.element-datetime {
  text-align: left;
  padding-bottom: 15px;
  position: relative;
}

.element-datetime:before {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: rgb(179,154,100);
  position: absolute;
  left: 0;
  bottom: 0;
}

.contents {
  padding: 30px 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;
}

.read_more,
.read_more2 {
  margin: 30px 0;
  text-align: center;
}

.read-more-open-a,
.read-more-close-a {
  display: inline-block;
  border: 1px solid rgb(179,154,100);
  padding: 1em 2em;
}

.contents .read-more-open-a:hover, 
.contents .read-more-close-a:hover {
  background-color: rgb(179,154,100);
  color: black;
  cursor: crosshair;
  text-decoration: none;
}

.read_jump {
  margin: 30px auto;
  text-align: left;
}

.tags {
  margin-top: 20px;
}

.tags a {
  margin-top: 20px;
  background: rgba(179,154,100,.2);
  padding: 2px;
}

.inner-contents {
  margin-bottom: 20px;
}

.inner-info {
  text-align: right;
}

.inner-info a {
  text-decoration: none;
  vertical-align: middle;
}

.comment-and-others-ul,
.sns-and-others-ul {
  display: inline-block;
  text-align: right;
  vertical-align: middle;
}

.sns-and-others-ul {
  margin-left: 1.5em;
}

.comment-and-others-ul li,
.sns-and-others-ul li {
  display: inline-block;
}

.comment-and-others-ul li {
  margin-left: 1em;
}

.sns-and-others-ul-link {
  display: inline-block;
  width: 90px;
  height: 30px;
  background-color: white;
  overflow: hidden;
  text-align: left;
}

.sns-and-others-ul-link .fa {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.sns-and-others-ul-link .fa:before {
  padding: 0;
  line-height: 30px;
}

.minimal-font {
  font-size: 11px;
}

.sns-and-others-ul-link:hover {
  background-color: rgb(179,154,100);
}

.sns-and-others-ul-link:hover .fa {
  font-size: 50px;
  color: black;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}

.element-read-more {
  margin: 20px 0;
  text-align: center;
}

.element-read-more a {
  border: 1px solid rgb(191,145,104);
  font-size: 12px;
  padding: .6em 1em;
  color: rgb(0,0,0);
}

.element-read-more a:hover {
  background-color: rgb(191,145,104);
  color: rgb(255,255,255);
}

.element-footer {
  text-align: right;
}

.element-footer a {
  color: rgb(0,0,0);
  padding: 10px 0;
}


/***------------------------------------------
      related post, trackback list
------------------------------------------***/

.relate_dl,
.tb_dl {
  margin: 20px auto 0;
  padding: 10px;
  background-color: rgb(249,252,251);
  border-radius: 3px;
  box-shadow: inset 0 0 15px rgba(0,0,0,.2);
  font-size: 12px;
}

.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: 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: 16px;
  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: 98px;
  float: left;
}

@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: "";
  width: 90px;
  height: 90px;
  background-color: rgb(225,214,193); /* 注)No image 関連記事サムネイル */
  border-radius: 1px;
  position: absolute;
  z-index: 2;
}

.related-overlay:after {
  content: "No image";
  display: block;
  width: 90px;
  height: 90px;
  color: rgb(51,51,51);
  line-height: 90px;
  position: absolute;
  z-index: 3;
  font-size: 12px;
  text-align: center;
}

@media screen and (max-width: 479px) {
  #fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
    width: 90px !important;
    height: 90px !important;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img {
    width: 90px !important;
    height: 90px !important;
  }
}


/***------------------------------------------
      posted comment
------------------------------------------***/

.another-title {
  margin: 0 auto;
  text-align: center;
}

.after-float {
  display: table;
  text-align: left;
  width: 100%;
  margin-bottom: 20px;
}

.stamp {
  display: table-cell;
  vertical-align: middle;
}

.stamp-container {
  display: table;
  width: 90px;
  height: 90px;
  background-color: rgb(51,51,51);
  color: rgb(179,154,100);
  text-align: center;
}

.stamp-container-cell {
  display: table-cell;
  vertical-align: middle;
}

.week-of-the-day-border {
  display: inline-block;
  font-size: 14px;
}

.container-name {
  font-size: 12px;
  font-weight: normal;
}

.container-name-bottom {
  font-size: 12px;
  padding-bottom: .2em;
}

.right-container {
  display: table-cell;
  width: 100%;
  padding-left: 20px;
  vertical-align: middle;
}

.visitor-name,
.visitor-comment-title {
  font-weight: bold;
  color: black;
}

.comment-info {
  padding-top: 15px;
  text-align: right;
}


/***------------------------------------------
      comment form
------------------------------------------***/

#comment_form {
  margin: 40px auto 0;
  width: 100%;
  max-width: 600px;
  vertical-align: middle;
  text-decoration: none;
}

#comment_form label {
  display: block;
  padding-bottom: 5px;
  font-size: 12px; /* 注)コメント投稿フォームラベル フォント大きさ */
}

#comment_form input {
  margin-bottom: 10px;
  width: 100%;
  background-color: white;
  border: 1px solid rgb(220,220,220); /* 注)コメントフォーム各項目ボーダー色 */
  padding: 12px;
}

#comment_form input:focus,
#comment:focus {
  border: 1px solid rgb(179,179,179); /* 注)コメントフォーム各項目(含 テキストエリア)フォーカス時ボーダー色 */
}

#comment {
  margin-bottom: 10px;
  width: 100%;
  min-height: 200px;
  background-color: white;
  border: 1px solid rgb(220,220,220); /* 注コメントフォームテキストエリアボーダー色 */
  line-height: 1.5;
  padding: 12px;
}

#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); /* 注)secretコメントチェックボックスボーダー色 */
    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);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  margin-top: 20px;
  margin-right: 20px;
  width: 156px;
  height: 30px;
  background-color: rgb(51,51,51); /* 注)send, deleteボタン背景色 */
  border: none;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0,0,0,.2);
  color: white;
  cursor: pointer;
  padding: 4px 0;
  font-family: 'Droid Serif', 'serif';
  font-size: 14px; /* 注)コメントsend/ deleteボタンフォント大きさ */
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  background-color: rgb(179,154,100); /* 注)send, deleteボタンホバー時背景色 */
}

.comment-info {
  text-align: right;
}


/***------------------------------------------
      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: 13px; /* 注)・トラックバックフォント大きさ */
}

#for-trackback-word {
  margin: 0 auto;
}

.op:focus {
  border: 1px solid rgb(179,179,179); /* 注)トラックバックフォーカス時ボーダー色 */
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
.pager {
  margin: 0 auto 50px;
  width: 100%;
  font-size: 11px;
}

.simple-pagination {
  margin: 0;
  overflow: hidden;
  text-align: center;
}

.simple-pagination ul {
  display: inline-block;
  min-height: 30px !important;
  overflow: hidden;
}

.simple-pagination li {
  margin: 3px;
  float: left;
}

.simple-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: inline-block;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 1px solid rgb(179,154,100);
  color: rgb(51,51,51);
  line-height: 29px;
}

.light-theme a:hover {
  background-color: rgb(179,154,100);
  color: white;
}

.prev,
.next {
  border: none !important;
}

.light-theme .current {
  background: rgba(255,255,255,.4); /* 注)汎用ページ送り現在ページ背景色 */
  border: none;
  box-shadow: 0 1px 0 rgba(255,255,255,8),
              0 0 2px rgba(0,0,0,.2)inset;
  color: rgb(51,51,51);
}

.light-theme .ellipse {
  color: rgb(51,51,51);
  font-weight: bold;
}

.light-theme .prev,
.light-theme .next {
  background-color: rgb(51,51,51); /* 注)汎用ページ送りprev/ next背景色 */
  box-shadow: none;
  color: white;
}

/* article */
.posted-pager,
.posted-pager-bottom {
  margin: 0 auto 50px;
  display: table;
  table-layout: fixed;
  width: 98%;
  font-size: 11px; /* 注)個別記事ページ送りフォント大きさ */
}

.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;
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  text-align: left;
}

.prev-a:before {
  content: "\f104";
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: rgb(51,51,51); /* 注)個別記事prevページ送り背景色 */
  color: white;
  line-height: 29px;
  position: absolute;
  font-family: 'FontAwesome';
  left: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.page-center-cell {
  width: 50px;
  height: auto;
  text-align: center;
}

.center-a {
  width: 100%;
  height: 100%;
}

.center-a .fa {
  width: 30px;
  height: 30px;
  background-color: rgb(51,51,51); /* 注)個別記事homeページ送り背景色 */
  color: white;
  line-height: 29px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.center-a .fa:before {
  line-height: 30px;
}

.next-a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: right;
  padding-right: 40px;
}

.next-a:before {
  content: "\f105";
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: rgb(51,51,51); /* 注)個別記事nextページ送り背景色 */
  color: white;
  line-height: 29px;
  position: absolute;
  font-family: 'FontAwesome';
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.prev-a:hover:before,
.center-a:hover .fa,
.next-a:hover:before {
  background-color: rgb(179,154,100); /* 注)個別記事ページ送りホバー時背景色 */
}

/* title list */
.titlelist-pager {
  display: table;
  table-layout: fixed;
  margin: 0 auto 50px;
  width: 100%;
  max-width: 300px;
}

.t-prev-a,
.t-center-a,
.t-next-a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.t-prev-a span,
.t-center-a span,
.t-next-a span {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 29px;
  background-color: rgb(51,51,51); /* 注)全記事リストページ送りprev/ next背景色 */
  color: white;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.t-prev-a .fa:before,
.t-center-a .fa:before,
.t-next-a .fa:before {
  line-height: 29px;
}

.t-prev-a:hover span,
.t-center-a:hover span,
.t-next-a:hover span {
  background-color: rgb(179,154,100); /* 注)全記事リストページ送りホバー時背景色 */
}

.t-prev-a span,
.t-next-a span {
  font-weight: bolder;
}

/* bottom pager adjust */
.pager-bottom {
  margin: 70px auto;
}


/***------------------------------------------
      index (title list), search page
------------------------------------------***/

.list-title {
  margin: 0 auto;
  line-height: 1.5;
  font-weight: bolder;
  font-size: 14px; /* 注)全記事リスト記事タイトルフォント大きさ */
}

.list-title a {
  text-decoration: none;
}

.list-entry {
  padding: 5px 0;
}

.list-entry-date,
.list-entry-category {
  text-align: right;
}

.list-entry-category {
  font-size: 12px; /* 注)全記事リストカテゴリフォント大きさ */
}

/* only for search page */
.list-entry .list-a {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 72px;
  height: 72px;
}

.thumbnails {
  display: inline-block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  position: relative;
}

.search-noimage {
  width: 100%;
  height: 100%;
  background-color: rgb(225,214,193); /* 注)No image 検索結果 */
  position: absolute;
  top: 0;
  left: 0;
}

.no-image-text {
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
  line-height: 72px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  text-align: center;
}


/***------------------------------------------
      rss thumbnail
------------------------------------------***/

#feedContainer {
  margin: 0 auto;
  width: 100%;
  word-break: break-all;
}

.rss-container {
  margin: 0 auto 15px;
  display: table;
  table-layout: fixed;
  width: 100%;
}

#feedContainer .rss-container:last-child {
  margin-bottom: 0;
}

.rss-a {
  display: table-cell;
  width: 100px;
  vertical-align: top;
}

.rss-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: relative;
}

.rss-image img {
  width: auto;
  max-width: initial;
  height: 130%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

.no-image-overlay {
  width: 100%;
  height: 100%;
  background-color: rgb(225,214,193); /* 注)No image 新着サムネイル */
}

.rss-no-image {
  width: 100%;
  height: 100%;
  color: rgb(51,51,51); /* 注)RSS新着No imageテキスト文字色 */
  line-height: 100px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  text-align: center;
}

.rss-right {
  display: table-cell;
  padding-left: 15px;
  vertical-align: middle;
  text-align: left;
}

.rss-title {
  line-height: 1.5;
  font-size: 13px;
}

.rss-date {
  font-size: 12px;
}

/* the number of comment/ trackback */
.number-of-cmtb {
  text-align: right;
}

.number-of-cmtb li {
  display: inline-block;
  margin-left: 1em;
}


/***------------------------------------------
      side menu
------------------------------------------***/

.side-menu {
  display: inline-block;
  width: 335px;
  background-color: white;
  padding: 15px 15px 20px;
  vertical-align: top;
  text-align: left;
}

@media screen and (max-width: 610px) {
  .side-menu {
    width: 100%;
    max-width: 400px;
  }
}

.side-menu h4 {
  margin: 0 auto 20px;
  background-color: rgb(51,51,51);
  color: white;
  padding: 8px 5px;
  position: relative;
  font-size: 14px;
  text-align: center;
}

.side-menu ul {
  margin-left: 1.4em;
  list-style-type: disc;
}

.side-menu a {
  color: rgb(100,100,100);
}

.side-menu a:hover {
  text-decoration: underline;
}

/* calendar */
.calender-month-style {
  font-family: 'Great Vibes', 'cursive';
  font-size: 22px;
  color: rgb(179,154,100);
  vertical-align: middle;
}

#prevMonth {
  margin-right: 2em;
  vertical-align: middle;
}

#nextMonth {
  margin-left: 2em;
  vertical-align: middle;
}

/* sns */
#side-sns-container-ul {
  margin: 30px auto 0;
  list-style: none;
  text-align: center;
}

#side-sns-container-ul li {
  display: inline-block;
  overflow: hidden;
  padding: 3px;
}

#side-sns-container-ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(179,154,100);
  color: white;
  line-height: 40px;
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#side-sns-container-ul li a:hover {
  font-size: 22px;
}

/* site search */
#search-form {
  margin: 20px auto 0;
  padding-top: 10px;
  text-align: center;
}

#search-form input[type="search"] { 
  width: 100%;
  max-width: 320px;
  background: url(https://blog-imgs-80-origin.fc2.com/v/a/n/vanillaice000/search_ffffff_14.png) 10px center rgba(179,154,100,.4) no-repeat;
  border: 1px solid rgba(158,86,154,.2);
  outline: none;
  padding: .2em;
  -webkit-appearance: none;
}

#search-form input[type="search"]:focus {
  background: white;
  color: rgb(51,51,51);
}


/***------------------------------------------
      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: 25%;
}

.sun {
  color: rgb(205,125,125);
}

.calender td {
  height: 30px;
  line-height: 30px;
  padding: 0;
}

.calender td a {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background: rgba(179,154,100,.4);
  line-height: 30px;
}

.calender td a:hover {
  background-color: rgb(179,154,100); /* 注)プラグインカレンダー リンクホバー時背景色 */
  color: white;
  text-decoration: none;
}

/* profile */
 .plugin-myimage {
  text-align: center !important;
  margin-bottom: 10px;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: 0 auto;
  max-width: 260px;
}

.sidebar-style input:not([type="submit"]),
.sidebar-style textarea,
.sidebar-style select {
  display: inline-block;
  margin-left: 1%;
  width: 98% !important;
  background-color: white;
  border: 1px solid rgb(207,207,207);
  border-radius: 2px;
  outline: none;
  padding: .5em;
}

.sidebar-style input[type="submit"] {
  display: inline-block;
  margin-left: 1%;
  background-color: rgb(179,154,100);
  border: none;
  color: white;
  cursor: pointer;
}

/* search */
.plugin-search {
  margin: 0 auto;
  width: 98%;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 2px 2px 2px 0;
  border: 1px solid rgb(238,238,240); /* 注)プラグインタグ ボーダー色 */
  padding: .3em 1em;
}

.plugin-tag a:hover {
  background-color: rgb(179,154,100); /* 注)プラグインタグ ホバー時背景色 */
  border-color: rgb(179,154,100);
  color: white;
  text-decoration: none;
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* profile */
 .plugin-myimage {
  margin: 0 auto 10px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  text-align: center !important;
}

.plugin-myimage img {
  width: auto;
  max-width: initial;
  height: 130%;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

/* mail form */
.side_bar form {
  display: block;
  margin: 0 auto;
  width: 98%;
  max-width: 260px;
}

.side_bar input:not([type="submit"]),
.side_bar textarea,
.side_bar select {
  display: inline-block;
  margin-left: 1%;
  width: 98% !important;
  background-color: white;
  border: 1px solid rgb(207,207,207);
  border-radius: 2px;
  outline: none;
  padding: .5em;
}

.side_bar input[type="submit"] {
  margin-left: 1%;
  background-color: rgb(179,154,100);
  border: none;
  color: white;
}

/* search */
.plugin-search {
  margin: 0 auto;
  width: 98%;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 0 2px 4px 0;
  border: 1px solid rgb(207,207,207); /* 個別記事下tagボーダー色 (approx)Very Light Grey */
  padding: 4px 8px;
}


/***----- RSS thumbnail
------------------------------------------***/

#feedContainer {
  margin-top: 10px;
  width: 100%;
  display: table;
  word-break: break-all;
}

.rss-container {
  display: table;
  table-layout: fixed;
  border-bottom: 1px solid rgb(238,238,238);
  padding: 15px 0;
}

#feedContainer .rss-container:last-child {
  border-bottom: none;
}

.image-table-cell {
  display: table-cell;
  vertical-align: top;
}

.for-img {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.for-img img {
  max-height: 170px;
  max-width: 180px;
  margin-left: -25px
}

.for-h-and-text {
  display: table-cell;
  vertical-align: top;
  padding-left: 20px;
  overflow: hidden;
}


/***------------------------------------------
      footer
------------------------------------------***/

#pagetop {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 140px;
  right: 60px;
  font-size: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid silver;
  background: rgba(255,255,255,.4);
}

#pagemiddle {
  display: none;
  width: 0;
  height: 0;
  font-size: 0;
}

#pagebottom {
  display: none;
  position: fixed;
  z-index: 9999;
  bottom: 90px;
  right: 60px;
  font-size: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid silver;
  background: rgba(255,255,255,.4);
}

#pagetop a,
#pagebottom a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: silver;
}

@media screen and (max-width: 768px) {
  #pagetop {
    bottom: 190px;
    right: 8px;
  }
  #pagebottom {
    right: 8px;
  }
  #pagemiddle {
    display: none;
    position: fixed;
    z-index: 9999;
    bottom: 140px;
    right: 8px;
    font-size: 11px;
    width: 40px;
    height: 40px;
    border: 1px solid silver;
    background: rgba(255,255,255,.4);
  }
  #pagemiddle a {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    color: silver;
  }
}

.new {
  color: red;
  font-size: 11px;
  margin-left: 1em;
}

.end {
  width: 100%;
  padding: 1em 0;
  text-align: center;
  line-height: 1.2;
  background-color: rgb(51,51,51);
}

.foot, #copyright {
  text-align: center;
  color: white;
  font-size: 11px;
}

#ad1, #ad2 {
  font-size: 11px;
}


/***------------------------------------------
      personal setting
------------------------------------------***/

.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2); /* 注)クラス追加(記事作成時手入力)で画像にドロップシャドウ追加 */
}