@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: Belong
* The first edition: 2016.2.27
* 2016.7.31 - 関連記事サムネイルの整形
* 2016.9.9 - リストマーカーの位置を調整
* 2016.10.6 - MicrosoftEdgeのfixedバグhackJS削除, その他微調整
* latest update: 2016.11.7 - MicrosoftEdgeのfixedバグhackJS削除, その他微調整
* Latest update: 2017.1.13 - テンプレデフォルト新着サムネイルを削除
*/

/***------------------------------------------
      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;
}

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;
}

blockquote:before,
blockquote:after,
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 {
  width: 98%;
  height: auto;
  margin: 0 auto;
  background: rgba(255,255,255,.4);
  border: 1px solid rgb(206,206,206);
  border-radius: 2px;
  padding: 2.5em;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "“";
  font-size: 700%;
  color: rgb(206,206,206);
  line-height: 1em;
  font-family: 'Times New Roman', 'Hiragino Kaku Gothic Pro W3', 'Meiryo', 'sans-serif';
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

blockquote:after {
  content: "”";
  font-size: 700%;
  color: rgb(206,206,206);
  line-height: 0em;
  font-family: 'Times New Roman', 'Hiragino Kaku Gothic Pro W3', 'Meiryo', 'sans-serif';
  position: absolute;
  right: 0;
  bottom: 0;
  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 {
  text-decoration: none;
  color: rgb(150,150,150); /* 注)基本リンク色 (approx)Nobel */
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

a:hover {
  color: rgb(51,51,51);
}


/***------------------------------------------
      layout
------------------------------------------***/

html, body {
  height: 100%;
}

body { /* 注)記事内基本フォント関連 */
  color: rgb(51,51,51); /* 注)テキスト基本色 Night Rider */
  font: 13px/1.7 'Poppins', '游ゴシック', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 90%;
  position: relative;
}

#main-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1280px) {
  #main-container {
    width: 90%;
  }
}
@media screen and (max-width: 1160px) {
  #main-container {
    width: 95%;
  }
}
@media screen and (max-width: 940px) {
  #main-container {
    width: 100%;
  }
}

#primary {
  float : left;
  width: 100%;
  margin-right : -300px;
  padding-bottom: 80px;
}

@media screen and (max-width: 940px) {
  #primary {
    margin: 0 auto;
    width: 90%;
    float: none;
  }
}
@media screen and (max-width: 940px) {
  #primary {
  }
}
@media screen and (max-width: 768px) {
  #primary {
    width: 95%;
  }
}

#main {
  margin-right: 330px;
}

@media screen and (max-width: 940px) {
  #main {
    margin: 0 auto;
  }
}

#secondary {
  float: left;
  width: 300px;
}

@media screen and (max-width: 940px) {
  #secondary {
    margin: 0 auto;
    width: 100%;
    float: none;
    text-align: center;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

/* SNS navigation */
#sns-navi {
  background-color: rgb(51,51,51); /* 注)ページ上部SNS背景色 Night Rider */
  text-align: right;
}

#sns-navi ul {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  list-style: none;
  padding: 8px 0;
}

#sns-navi ul li {
  display: inline-block;
}

#sns-navi a {
  display: inline-block;
  margin-left: 8px;
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  color: rgb(51,51,51); /* 注)ページ上部SNSアイコン色 Night Rider */
  line-height: 22px;
  text-align: center;
}

#sns-navi .fa:before {
  line-height: 22px;
}

/* blog title */
.blog-name-container {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  padding: 60px 10px;
  color: white;
}

@media screen and (max-width: 768px) {
  .blog-name-container {
    width: 100%;
  }
}

#blog-title { /* 注)ブログタイトルフォント関連 */
  margin: 0 auto;
  width: 100%;
  max-width: 850px;
  line-height: 1.3;
  padding: 30px 0;
  font-size: 24px;
  font-weight: bolder;
  text-align: center;
}

#blog-title a {
  color: rgb(51,51,51); /* 注)ブログタイトルリンク色 */
}

/* global navigation */
.navi-menu {
  margin: 0 auto;
  width: 90%;
  max-width: 1400px;
  height: 45px;
  border-top: 1px solid rgb(177,175,176);
  border-bottom: 1px solid rgb(177,175,176);
}

.navi-menu2 {
  display: block;
  position: fixed;
  z-index: 100004;
  width: 100%;
  height: 45px;
  background: none;
  border-bottom: 1px solid rgb(177,175,176);
  overflow: hidden;
  -webkit-transition:  all .3s;
  transition:  all .3s;
  opacity: 0;
  top: -100px;
  padding: 0 8px;
}

.sticky {
  background-color: white;
  top: 0;
  opacity: 1;
}

.position-adjust {
  top: 27px;
}

.mobile-toggle {
  display: none;
}

.ordinary-navi {
  margin: 0 auto;
  width: 100%;
}

.dropmenu {
  margin: 0 auto;
  width: 100%;
  max-width: 650px; /* 注)ナビゲーションリンクを増やす方はこの一行削除 */
  list-style: none;
  font-size: 12px;
  text-align: center;
}

.dropmenu > li {
  display: inline-block;
  margin: 0;
  width: 20%; /* 注)ナビゲーションリンクの増減は%指定を100÷リンク件数で算出 (デフォルト5件 100÷5=20) */
  padding: 0;
  text-align: center;
  position: relative;
}

.dropmenu .pc-hide {
  display: none;
}

.dropmenu > li > a {
  display: block;
  margin: 0;
  height: 100%;
  padding: 1em 0;
  text-decoration: none;
  font-weight: bolder;
  color: rgb(51,51,51); /* 注)ナビゲーションリンク色 Night Rider */
}

/* overline-from-center */
.overline-from-center {
  display: inline-block;
  box-shadow: 0 0 1px rgba(0,0,0,0);
  overflow: hidden;
  position: relative;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.overline-from-center:before {
  content: "";
  height: 4px;
  background: rgb(51,51,51); /* 注)ナビゲーションリンクホバーエフェクト色 Night Rider */
  position: absolute;
  top: 0;
  right: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.overline-from-center:hover:before,
.overline-from-center:focus:before,
.overline-from-center:active:before {
  right: 0;
  left: 0;
}

.dropmenu > li > ul > li {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .ordinary-navi2 .dropmenu > #modal-search:before {
    display: none;
  }
  .ordinary-navi2 .dropmenu > li {
    width: 100%;
  }
  .mobile-toggle {
    display: block;
    margin: 0 0 0 auto;
    cursor: pointer;
    font-size: 20px;
    width: 58px;
    height: 45px;
    padding: 11px 15px 0;
  }
  .mobile-toggle span {
    width: 28px;
    height: 3px;
    margin-bottom: 5px;
    border-radius: 1000px;
    background-color: rgb(51,51,51); /* 注)上部ナビゲーションハンバーガーボタンの色  (approx)Tamarillo*/
    display: block;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  .open-navi span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .open-navi span:nth-of-type(2) {
    opacity: 0;
  }
  .open-navi span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  .navi-menu2 {
    height: auto;
  }
  .ordinary-navi2 {
    display: none;
    max-height: 480px;
    padding-bottom: 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* search modal */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  display: none;
  background: rgba(255,255,255,.95); /* 注)サイト内検索モーダル背景色 white 不透明度0.95 */
  position: fixed;
  z-index: 100005;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
}

.remodal-wrapper {
  display: none;
  overflow: auto;
  position: fixed;
  z-index: 100005;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  content: "";
  display: inline-block;
  margin-left: -0.05em;
  height: 100%;
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal {
  outline: none;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  display: inline-block;
}

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px 0;
  font-family: 'Playball', '游ゴシック', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo';
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

.remodal-close {
  display: block;
  width: 100%;
  height: 60px;
  background: transparent;
  border: 0;
  color: rgb(179,179,179); /* 注)サイト内検索モーダル Close文字色 (approx)Pink Swan */
  cursor: pointer;
  outline: 0;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: -50px;
  left: 0;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: color .5s;
  transition: color .5s;
}

.remodal-close:hover,
.remodal-close:focus {
  color: rgb(51,51,51); /* 注)サイト内検索モーダル Closeホバー時文字色 Night Rider */
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.remodal-search-form input {
  display: block;
  margin: 0 auto;
  width: 98%;
  max-width: 800px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(51,51,51); /* 注)サイト内検索テキスト入力下部ボーダー色 Night Rider */
  outline: none;
  padding: .3em;
  font-size: 20px;
}

/* modal animation */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}


/***------------------------------------------
      top page
------------------------------------------***/

/* title above articles */
.another-title {
  margin: 0 auto 50px;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.another-title:before {
  content: "";
  display: block;
  background-color: rgb(51,51,51);
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 13px;
  left: 0;
  z-index: 1;
}

.another-title span {
  background-color: white;
  line-height: 1;
  padding-right: 1.5em;
  position: relative;
  z-index: 3;
}

/* float */
.float-wrap {
  overflow: hidden;
}

.time-stamp-wrap {
  margin: 0 30px 20px 0;
  width: 80px;
  border: 1px solid rgb(51,51,51); /* 注)記事横日付 ボーダー色 Night Rider */
  float: left;
  padding: 10px 0;
  text-align: center;
}

@media screen and (max-width: 568px) {
  .time-stamp-wrap {
    margin: 0 auto 20px;
    width: 100%;
    float: none;
  }
}

.topentry-month {
  line-height: 1;
  font-size: 13px;
  text-transform: uppercase;
}

.topentry-day {
  letter-spacing: .2em;
  line-height: 1;
  padding: 7px 0 4px;
  font-size: 30px;
  text-indent: .2em;
}

.topentry-year {
  border-bottom: 1px solid rgb(51,51,51);
  line-height: 1;
  padding-bottom: 10px;
  font-size: 13px;
}

.topentry-comment-num {
  line-height: 1;
  padding-top: 10px;
}

.topentry-comment-num a {
  color: rgb(51,51,51);
}

.topentry-num {
  padding-left: 10px;
}

.element-title {
  margin: 0 auto 10px;
  line-height: 1.3;
  font-size: 18px;
}

.topentry-category a {
  margin-left: 1em;
}

.read-more {
  padding: 30px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

.read-more a {
  color: rgb(51,51,51);
}

#postscript {
  margin-top: -45px;
  padding-top: 45px;
}

/* individual article */
.main-body {
  margin-bottom: 70px;
  overflow: hidden;
  padding-left: 5px;
}

@media screen and (max-width: 640px) {
  .main-body {
    padding: 0 15px;
  }
}

.contents {
  padding: 20px 0;
}

.inner-contents {
  padding-bottom: 20px;
}

/* 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;
}

.height-adjust {
  padding-top: 65px;
  margin-top: -45px;
}

.inner-contents a:hover {
  text-decoration: underline;
}

/* tag on article */
.tags {
  margin-top: 20px;
}

.tags a {
  padding: 0 2px;
}

/* SNS share */
.inner-footer-sns {
  display: table;
  table-layout: fixed;
  width: 100%;
  border: 1px solid rgb(51,51,51);
  list-style: none;
  text-align: center;
}

.inner-footer-sns li {
  display: table-cell;
}

.inner-footer-sns li a {
  display: block;
  padding: 1em 0;
}

/* SNS brand color */
.inner-footer-sns li .c-facebook:hover {
  background-color: rgb(59,89,152);
  color: white;
}

.inner-footer-sns li .c-twitter:hover {
  background-color: rgb(73,171,242);
  color: white;
}

.inner-footer-sns li .c-pinterest:hover {
  background-color: rgb(206,15,25);
  color:white;
}

.inner-footer-sns li .c-google-plus:hover {
  background-color: rgb(221,75,57);
  color: white;
}

.inner-footer-sns li .c-leave-a-comment:hover,
.inner-footer-sns li .c-pencil:hover,
.inner-footer-sns li .go-to-page:hover,
.inner-footer-sns li .c-send-a-trackback:hover {
  background-color: silver;
  color: white;
}


/***------------------------------------------
      posted comment
------------------------------------------***/

.border-container {
  min-height: 46px;
  padding-left: 55px;
  position: relative;
  font-weight: 600;
}

.border-container:before {
  content: "\f007";
  display: inline-block;
  width: 46px;
  height: 46px;
  background-color: rgb(207,207,207); /* 注)訪問者アイコン背景色 (approx)Very Light Grey */
  border-radius: 50%;
  color: white;
  line-height: 46px;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'FontAwesome';
  font-size: 18px;
  text-align: center;
}

.visitor-name {
  font-size: 14px;
}

.comment-title {
  margin-bottom: 5px;
}

.comment-body {
  padding: 10px 0;
}

.visitor-fotter-info {
  margin-top: 10px;
  text-align: right;
}


/***------------------------------------------
      comment form
------------------------------------------***/

#comment_form {
  margin: 0 auto;
  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(51,51,51); /* 注)コメントフォーム各項目ボーダー色 Night Rider */
  padding: 12px;
}

#comment_form input:focus, #comment:focus {
  border: 1px solid silver; /* 注)コメントフォーム各項目(含 テキストエリア)フォーカス時ボーダー色 */
}

#comment {
  margin-bottom: 10px;
  width: 100%;
  min-height: 200px;
  background-color: white;
  border: 1px solid rgb(51,51,51); /* 注コメントフォームテキストエリアボーダー色 Night Rider */
  line-height: 1.5;
  padding: 12px;
}

#comment_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

#community, #trackback {
  margin-top: -45px;
  padding-top: 45px;
  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コメントチェックボックスボーダー色 Gainsboro */
  }

  #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コメントチェックマーク色 Night Rider(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コメントチェックマーク色 Night Rider(2/3) */
    border-left: 3px solid rgb(51,51,51); /* 注)secretコメントチェックマーク色 Night Rider(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ボタン背景色 Night Rider */
  border: none;
  color: white; /* 注)send, deleteボタンテキスト色 */
  cursor: pointer;
  font-size: 14px; /* 注)send, deleteボタンフォント大きさ */
  text-align: center;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#sendbtn {
  margin-right: 1%;
}

#delbtn {
  margin-left: 1%;
}

.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); /* 注)トラックバックボーダー色 Gainsboro */
  border-radius: 0;
  outline: none;
  padding: .5em;
  font-size: 13px; /* 注)・トラックバックフォント大きさ */
}

#for-trackback-word {
  margin: 0 auto;
}

.op:focus {
  border: 1px solid rgb(179,179,179); /* 注)トラックバックフォーカス時ボーダー色 (approx)Pink Swan */
}


/***------------------------------------------
      related post, trackback list
------------------------------------------***/

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  margin: 120px auto 30px;
  background-color: transparent;
  padding: 0;
  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%;
  border-top: 1px solid rgb(238,238,240);
  padding-top: 20px;
  position: absolute;
  top: -70px;
  z-index: 3;
  font: bolder 16px/1.3 'Julius Sans One', '游ゴシック', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo'
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
  width: 33.33%;
  height: 98px;
  float: left;
}

@media screen and (max-width: 1400px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 50%;
  }
}

@media screen and (max-width: 1024px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 100%;
  }
}

@media screen and (max-width: 940px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 50%;
  }
}

@media screen and (max-width: 750px) {
  #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;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail .relate_entry_thumbnail_noimg {
  position: relative;
  z-index: 1;
}

.related-overlay {
  position: relative;
}

.related-overlay:before {
  content: "";
  width: 90px;
  height: 90px;
  background: url(//blog-imgs-93-origin.fc2.com/v/a/n/vanillaice000/Belongnoimage.jpg) center center /cover no-repeat; /* 注)No image 関連記事サムネイル White Smoke */
  position: absolute;
  z-index: 2;
}

.related-overlay:after {
  content: "No image";
  display: block;
  width: 90px;
  height: 90px;
  background-color: rgba(255,255,255,.7);
  color: rgba(51,51,51,.6);
  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;
  }
}

/* without thumbnail */
.relate_dl,
.tb_dl {
  margin-top: 30px;
  background: rgb(245,245,245); /* 注)関連記事・トラックバック一覧背景色 White Smoke */
  border-radius: 4px;
  padding: 10px;
}

.relate_dt,
.tb_dt {
  padding: 3px;
  font-weight: bold;
}

.date {
  padding-top: 10px;
}

.tb_ul {
  padding: 10px 0;
}

.fc2relate_entry_thumbnail_off .relate_ul,
.tb_ul {
  margin: 0;
  margin-left: 1.5em;
  list-style-type: square;
  padding: 0;
}


/***------------------------------------------
      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;
  position: relative;
  width: 72px;
  height: 72px;
  overflow: hidden;
}

.search-noimage {
  width: 100%;
  height: 100%;
  background: url(//blog-imgs-93-origin.fc2.com/v/a/n/vanillaice000/Belongnoimage.jpg) center center /cover no-repeat; /* 注)No image画像 検索結果 */
}

.search-noimage:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.8); /* 注)検索結果ページNo image上マスク背景色 white 不透明度0.8 */
  position: absolute;
  top: 0;
  left: 0;
}

.no-image-text {
  margin: auto;
  width: 100%;
  height: 1.5em;
  color: rgba(51,51,51,.4);
  line-height: 1.5em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  font-family: 'Poppins';
  font-size: 12px;
  text-align: center;
}


/***------------------------------------------
      calendar (includes official one)
------------------------------------------***/

.calender {
  margin: 0 auto;
  table-layout: fixed;
  width: 260px;
  border-spacing: 3px 6px;
  font-size: 12px;
  text-align: center;
}

.calender caption {
  margin-bottom: 10px;
}

#prevMonth {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  text-align: center;
}

.calender-month-style {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  font-size: 15px;
  text-transform: uppercase;
}

#nextMonth {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  text-align: center;
}

.sun {
  color: rgb(161,12,0);
}

.calender td {
  height: 30px;
  line-height: 30px;
  padding: 0;
}

.calender td a {
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(212,217,220);
  border-radius: 50%;
  line-height: 30px;
}

.calender td a:hover {
  background: rgb(212,217,220);
}


/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.side-menu {
  display: inline-block;
  margin: 0 auto;
  width: 300px;
  line-height: 1.8;
  padding: 0 15px 30px;
  vertical-align: top;
  font-size: 12px; /* 注)サイドメニューフォント大きさ */
}

@media screen and (max-width: 603px) {
  .side-menu {
    width: 100%;
    max-width: 350px;
  }
}

.side-menu ul {
  margin-left: 1.5em;
  list-style-type: disc;
}

.sidebar-style {
  text-align: left;
}

.side-menu h4 {
  margin: 0 auto 20px;
  background-color: rgb(51,51,51);
  color: white;
  padding: .8em .3em;
  font: 14px/1.3 'Poppins', '游ゴシック', 'YuGothic', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo';
  text-align: center;
}

.fit-sidebar-fixed{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: fixed;
}

.fit-sidebar-blank{
  z-index: 0;
  background-color: transparent;
  visibility: hidden;
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* profile */
 .plugin-myimage {
  text-align: center !important;
  margin-bottom: 10px;
}

/* mail form */
.sidebar-style form {
  margin: 0 auto;
  width: 98%;
  max-width: 260px;
  display: block;
}

.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;
}

/* search */
.plugin-search {
  margin: 0 auto;
  width: 98%;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  margin: 2px;
  display: inline-block;
  padding: .3em .2em .2em;
  border: 1px solid rgb(220,220,220); /* 公式タグボーダー色 Gainsboro */
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
.pager {
  width: 100%;
  margin: 70px auto 50px;
}

.simple-pagination {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.simple-pagination ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
}

.simple-pagination li {
  display: block;
  float: left;
  margin: 0 5px 3px 0;
  list-style: none;
  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;
  vertical-align: middle;
  line-height: 35px;
  color: rgb(51,51,51);
  text-align: center;
  font-size: 12px; /* 注)汎用ページ送りフォント大きさ */
  background: transparent;
}

.light-theme a:hover {
  background-color: rgb(212,217,220); /* 注)汎用ページ送りマウスホバー時背景色 (approx)Pattens Blue */
  opacity: 1;
}

.prev, .next {
  border: none !important;
  font-weight: bolder;
}

.light-theme .current {
  background: rgba(212,217,220,.4); /* 注)汎用ページ送り現在ページ背景色 (approx)Pattens Blue+不透明度0.4 */
  color: rgb(51,51,51);
}

.light-theme .ellipse {
  font-weight: bold;
  color: rgb(51,51,51);
}

.light-theme .prev, .light-theme .next {
  width: auto;
  box-shadow: none;
  background-color: rgb(51,51,51); /* 注)汎用ページ送りprev/ next時背景色 Night Rider */
  padding: 0 1em;
  color: white;
}

/* article */
.posted-pager {
  margin: 0 auto 50px;
  display: table;
  table-layout: fixed;
  width: 98%;
  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;
  position: relative;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  text-align: left;
}

.prev-a:before {
  content: "\f104";
  position: absolute;
  font-family: 'FontAwesome';
  width: 35px;
  height: 35px;
  line-height: 35px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(212,217,220,.4); /* 注)個別記事prevページ送り背景色 (approx)Pattens Blue+不透明度0.4 */
  color: rgb(51,51,51);
  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: 35px;
  height: 35px;
  line-height: 35px;
  background-color: rgba(212,217,220,.4); /* 注)個別記事homeページ送り背景色 (approx)Pattens Blue+不透明度0.4 */
  color: rgb(51,51,51);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.center-a .fa:before {
  line-height: 35px;
}

.next-a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: right;
  padding-right: 40px;
}

.next-a:before {
  content: "\f105";
  position: absolute;
  font-family: 'FontAwesome';
  width: 35px;
  height: 35px;
  line-height: 35px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(212,217,220,.4); /* 注)個別記事nextページ送り背景色 (approx)Pattens Blue+不透明度0.4 */
  color: rgb(51,51,51);
  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(212,217,220); /* 注)個別記事ページ送りホバー時背景色 (approx)Pattens Blue */
}

/* side pagination */
.side-pager-left, .side-pager-right {
  position: fixed;
  z-index: 100003;
  top: 40%;
  width: 180px;
  height: 80px;
  font-size: 12px; /* 注)サイドページ送りフォント大きさ */
  -webkit-transition: opacity .7s ease;
  transition: opacity .7s ease;
  opacity: 0;
}

.side-pager-left {
  left: -157px;
}

.side-pager-right {
  right: -157px;
}

.page-div-right, .page-div-left {
  display: block;
  width: 180px;
  height: 80px;
  margin: 0;
}

.side-pager-right a, .side-pager-left a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: none;
  transition: none;
  color: rgb(51,51,51);
  word-break: break-all;
}

.page-table {
  display: table;
  width: 100%;
  height: 100%;
}

.circle-cell {
  display: table-cell;
  vertical-align: top;
  width: 80px;
  height: 80px;
}

.circle {
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: rgba(51,51,51,.2); /* 注)個別記事ページサイドページ送りnext, prev背景色 Night Rider+不透明度0.8 */
  text-align: center;
}

.title-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding: 0 10px;
}

.appear {
  opacity: 1;
}

/* title list */
.titlelist-pager {
  margin: 0 auto 50px;
  display: table;
  table-layout: fixed;
  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 .fa, .t-center-a .fa, .t-next-a .fa {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: rgba(212,217,220,.4); /* 注)全記事リストページ送りprev/ next背景色 (approx)Pattens Blue+不透明度0.4 */
  color: rgb(51,51,51);
  -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: 35px;
}

.t-prev-a:hover .fa,
.t-center-a:hover .fa,
.t-next-a:hover .fa {
  background-color: rgb(212,217,220); /* 注)全記事リストページ送りホバー時背景色 (approx)Pattens Blue */
}


/***------------------------------------------
      footer
------------------------------------------***/

#pagetop {
  display: none;
  position: fixed;
  z-index: 100003;
  bottom: 140px;
  right: 60px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(179,171,180,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  color: rgb(94,157,31);
}

#pagemiddle {
  display: none;
  width: 0;
  height: 0;
  font-size: 0;
}

#pagebottom {
  display: none;
  position: fixed;
  z-index: 100003;
  bottom: 90px;
  right: 60px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(179,171,180,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  color: rgb(94,157,31);
}

#pagetop a,
#pagebottom a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
}

@media screen and (max-width: 940px) {
  #pagetop {
    bottom: 190px;
    right: 8px;
  }
  #pagebottom {
    right: 8px;
  }
  #pagemiddle {
    display: none;
    position: fixed;
    z-index: 100003;
    bottom: 140px;
    right: 8px;
    font-size: 11px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(179,171,180,.5);
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    color: rgb(94,157,31);
  }
  #pagemiddle a {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 40px;
  }
}

.new {
  color: red;
  font-size: 11px;
}

.end {
  width: 100%;
  padding: 30px 5px;
  background-color: rgb(49,49,49);
  line-height: 1.3;
  color: white;
  text-align: center;
}

.end a:hover {
  color: rgb(150,150,150);
}

.foot, #copyright {
  text-align: center;
  font-size: 12px;
}

#ad1, #ad2 {
  font-size: 11px;
  color: rgb(150,150,150);
}


/***------------------------------------------
      personal settings
------------------------------------------***/

/* shadow for image */
.shadow-attachment {
  box-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* 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%;
}

/* for image */
.zoom-in {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.zoom-in:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0,0,0,.6);
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out; 
}

.zoom-in:after {
  content: "\f065";
  font-family: FontAwesome;
  text-align: center;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -17px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.zoom-in:hover:before, .zoom-in:hover:after {
  opacity: 1;
}

.zoom-in-round {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.zoom-in-round:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0,0,0,.6);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out; 
}

.zoom-in-round:after {
  content: "\f065";
  font-family: FontAwesome;
  text-align: center;
  font-size: 20px;
  color: white;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -17px;
  z-index: 3;
  opacity: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.zoom-in-round:hover:before, .zoom-in-round:hover:after {
  opacity: 1;
}

.emoji {
  vertical-align: middle;
}

/* for darkbox */
#darkbox_next:hover, #darkbox_prev:hover {
  border-color: rgb(179,179,179) !important;
}

#cboxOverlay, #cboxWrapper, #colorbox {
  z-index: 100005 !important;
}