@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: Life-is
* The first edition: 2016.3.21
* 2016.3.31 - スライドの切り替わるターゲット幅を微調整
* Latest update - 2016.4.4 - ページ移動ボタンJS記述ミスを訂正
*/


/***------------------------------------------
      reset
------------------------------------------***/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, 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: rgba(0,0,0,0);
  tap-highlight-color: rgba(0,0,0,0);
  word-wrap: break-word;
}

ol, ul {
  list-style: none;
}

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="submit"], 
input[type="search"], 
textarea, 
select {
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: 'Menlo', 'consolas', 'Courier';
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* fc2 */
.fc2_footer {
  margin: 20px 0;
}

#fc2_text_ad {
  font-size: 12px;
}


============================================================ */


/***------------------------------------------
      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;
}

blockquote p {
  text-align: center;
}


/***------------------------------------------
      link
------------------------------------------***/

a {
  text-decoration: none;
  color: rgb(110,205,212); /* 注)基本リンク色はここです */
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}


/***------------------------------------------
      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";
}

body {
  width: 100%;
  font-size: 13px; /* 注)記事の文字サイズはここです */
  font-family: 'Work Sans', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Meryo', 'メイリオ';
  letter-spacing: 0.1em;
  color: rgb(51,51,51); /* 注)記事の文字色 #ffffff などの16進数でも可 */
  line-height: 1.7;
  background-color: rgb(247,247,247);
}

/* layout */
#wrapper {
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
  height: auto !important;
  height: 100%;
}

#main-container {
  width: 100%;
  max-width: 1250px; /* 注)記事横幅制御 この一行を外すと記事横幅の制限が無くなります */
  margin: 0 auto;
  padding: 40px 350px 100px 50px;
}

.static-style {
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
}


/***------------------------------------------
      header
------------------------------------------***/

#blog-head {
  margin: 0 auto;
  padding: 0 350px 0 50px;
}

#mask-container {
  padding: 60px 0 40px;
}

#blog-name {
  text-align: center;
  margin-bottom: 10px;
  visibility: hidden;
}

#blog-name a { /* 注)ブログタイトルフォント関連 */
  font-family: 'Rock Salt', '游ゴシック', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
  font-size: 20px;
  color: rgb(51,51,51);
  text-shadow: 2px 4px 3px rgba(0,0,0,.2);
  padding: 0 .5em;
}

#subtitle { /* 注)サブタイトルフォント関連 */
  font-family: 'Work Sans', '游ゴシック', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo';
  text-align: center;
  margin-bottom: 30px;
  visibility: hidden;
}

/* animation */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-80px, 0, 0);
            transform: translate3d(-80px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-80px, 0, 0);
            transform: translate3d(-80px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(80px, 0, 0);
            transform: translate3d(80px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(80px, 0, 0);
            transform: translate3d(80px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

/* navi */
#sns-navigation {
  margin: 0 auto;
}

#sns {
  text-align: center;
}

#sns li {
  display: inline-block;
  padding: .5em;
}

#sns li a {
  color: rgb(51,51,51);
}

#sns li a:hover {
  color: rgb(110,205,212);
}

#sns .pc-hide {
  display: none;
}

#sns .fa {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 15px;
}

#sns .fa:before {
  padding: 0;
  line-height: 30px;
}

/* search modal */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.remodal,
[data-remodal-id] {
  display: none;
}

.remodal-overlay {
  position: fixed;
  z-index: 1000011;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  background: rgba(255,255,255,.95);
  display: none;
}

.remodal-wrapper {
  position: fixed;
  z-index: 1000011;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.remodal {
  position: relative;
  outline: none;
  -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: 0.3s;
  animation-duration: 0.3s;
  -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;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -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 {
  position: absolute;
  top: -50px;
  left: 0;
  display: block;
  overflow: visible;
  width: 100%;
  height: 60px;
  font-size: 18px;
  text-align: center;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: rgb(51,51,51);
  font-family: 'Work Sans', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Meryo', 'メイリオ';
  border: 0;
  outline: 0;
  background: transparent;
  letter-spacing: .2em;
}

.remodal-close:hover,
.remodal-close:focus {
  color: rgb(110,205,212);
}

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

#remodal-search-form input {
  margin: 0 auto;
  display: block;
  width: 98%;
  max-width: 800px;
  outline: none;
  border: none;
  border-bottom: 1px solid rgb(51,51,51);
  font-size: 20px;
  color: rgb(51,51,51);
  background: transparent;
  padding: .3em 1em;
}

/* 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;
  }
}


/***------------------------------------------
      posts
------------------------------------------***/

.main-body {
 width: 100%;
 margin-bottom: 40px;
 border-bottom: 1px solid rgb(51,51,51);
}

/* ribnon */
.ribbon-align {
  text-align: center;
  font-size: 11px;
}

.cate-ribbon {
  display: inline-block;
  position: relative;
  max-width: 90%;
  height: 26px;
  line-height: 26px;
  padding: 0 3em;
  color: rgb(51,51,51);
  background-color: rgb(228,228,228);
  outline: 1px dashed white;
  outline-offset: -3px;
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
}

.cate-ribbon:before, .cate-ribbon:after {
  content: "";
  position: absolute;
}

.cate-ribbon:before {
  top: 0;
  left: 0;
  z-index: 2;
  border-width: 13px 10px;
  border-style: solid;
  border-color: transparent;
  border-left-color: rgb(247,247,247);
}

.cate-ribbon:after {
  top: 0;
  right: 0;
  z-index: 2;
  border-width: 13px 10px;
  border-style: solid;
  border-color: transparent;
  border-right-color: rgb(247,247,247);
}

.cate-ribbon:hover {
  background-color: rgb(110,205,212);
  color: white;
  opacity: 1;
}

.entry-title {
  font-size: 16px;　/* 注)記事タイトルフォント大きさ */
  line-height: 1.2;
  margin: 15px auto 10px;
  text-align:center;
}

.entry-title a {
  color: rgb(51,51,51);
}

.entry-title a:hover {
  color: rgb(110,205,212);
}

.posted-time {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
}

.contents {
  padding: 20px;
}

.inner-contents a:hover {
  text-decoration: underline; /* 注)記事内リンクにマウスオーバーで下線 解除するなら削除 */
}

.read-more {
  text-align: right;
  font-weight: bold;
  font-size: 14px;
  padding: 30px 0 0;
}

.read-more a {
  color: rgb(51,51,51);
}

/* related and trackback */
.relate_dl, .tb_dl {
  text-align: right;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: inset 0 1px 5px rgba(0,0,0,.3);
}

.relate_dl {
  margin: 50px auto 10px;
}

.tb_dl {
  margin: 0 auto 40px;
}

.relate_li a:hover, .tb_li a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* tag */
.tags {
  margin-top: 30px;
}

.tags a {
  color: rgb(51,51,51);
  border-radius: 4px;
  padding: 2px;
}

.tags a:hover {
  text-decoration: none;
  color: rgb(110,205,212);
}

.info { /* 注)記事下フッター */
  text-align: right;
  margin-bottom: 10px;
}

/* footer sns */
.sns-share li {
  display: inline-block;
  font-size: 15px;
  padding: 0 .4em;
}

.sns-share .non-padding {
  padding: 0 .4em 0 0;
  font-size: 12px;
}

.sns-share li a {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  color: rgb(51,51,51);
}

.sns-share li a > div {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.sns-share li a > div span {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.sns-share li a > div span:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transform: rotateX(-90deg) translateZ(30px);
  transform: rotateX(-90deg) translateZ(30px);
  color: rgb(110,205,212);
}

.sns-share li a:hover > div span:first-of-type {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}

.sns-share li a:hover > div span:nth-of-type(2) {
  opacity: 1;
  -webkit-transform: rotateX(0) translateZ(0);
  transform: rotateX(0) translateZ(0);
}


/***------------------------------------------
      comments
------------------------------------------***/

.sub-header {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}

.border-container {
  border-left: 6px solid rgb(51,51,51);
  padding-left: .5em;
  margin-bottom: 15px;
}

.comment-title {
  font-weight: bold;
}

.comment-body {
  padding-bottom: 15px;
}

.comment-info {
  text-align: right;
}


/***------------------------------------------
      comment form
------------------------------------------***/

#form-table {
  margin: 0 auto 40px;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
}

#form-left-cell {
  display: table-cell;
  vertical-align: top;
  width: 60%;
  height: 100%;
  padding-right: 10px;
}

#comment_form {
position: relative;
z-index: 1000001;
background-color: rgb(247,247,247)
}

#comment {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  padding: .5em;
  outline: none;
  border: 1px solid rgb(51,51,51);
  font-family: 'Work Sans', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Meryo', 'メイリオ';
  letter-spacing: 0.1em;
}

#form-right-cell {
  display: table-cell;
  vertical-align: top;
  width: 40%;
  padding-left: 10px;
}

#form-right-cell input {
  display: block;
  width: 100%;
  padding: .5em;
  outline: none;
  border: 1px solid rgb(51,51,51);
  margin-bottom: 10px;
  font-family: 'Work Sans', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Meryo', 'メイリオ';
  letter-spacing: 0.1em;
  background-color: white;
}

#comment::-webkit-input-placeholder {
  font-size: 12px;
}

#comment::-moz-placeholder {
  font-size: 12px;
}

#comment:-ms-input-placeholder {
  font-size: 12px;
}

#form-right-cell input::-webkit-input-placeholder {
  font-size: 12px;
  padding-top: .1em;
  line-height: 1;
}

#form-right-cell input::-moz-placeholder {
  font-size: 12px;
  padding-top: .1em;
  line-height: 1;
}

#form-right-cell input:-ms-input-placeholder {
  font-size: 12px;
  padding-top: .1em;
  line-height: 1;
}

#comment:focus, #form-right-cell input:focus {
  border: 1px solid rgb(110,205,212);
}

/* button */
#btn-container {
  margin-top: 10px;
  text-align: center;
}

#sendbtn, #delbtn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: rgb(110,205,212);
  cursor: pointer;
  outline: none;
  border: none;
  border-radius: 50%;
  text-align: center;
  color: white;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#delbtn {
  margin-left: 10px;
}

#sendbtn:hover {
  background-color: rgb(87,119,47);
}

#delbtn:hover {
  background-color: rgb(175,70,107);
}

#form-right-cell input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 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 {
  position: relative;
  left: 0;
  display: inline-block;
  margin-right: 12px;
  line-height: 1.5px;
  cursor: pointer;
}
 
@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: "";
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-color: white;
  }

  #no-p input[type=checkbox] + label:before {
    border: 1.5px solid rgb(51,51,51);
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
  }

  #no-p input[type=radio]:checked + label:after {
    top: 2px;
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px; 
    background: rgb(110,205,212); /* 注)secretチェックボックスのレ点の色 1/3*/
    border-radius: 8px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid rgb(110,205,212); /* 注)secretチェックボックスのレ点の色 2/3*/
    border-bottom: 3px solid rgb(110,205,212); /* 注)secretチェックボックスのレ点の色 3/3*/
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}


/***------------------------------------------
      trackback
------------------------------------------***/

.tb_ul {
  padding: 10px 0;
}

.op, #for-trackback-word {
  display: block;
  width: 100%;
  max-width: 600px;
}

.op {
  margin: 0 auto 10px;
  border: 1px solid rgb(51,51,51);
  border-radius: 0;
  outline: none;
  padding: .5em;
  font-family: 'Work Sans', 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'Meryo', 'メイリオ';
  font-size: 13px;
}

#for-trackback-word {
  margin: 0 auto 40px;
}

.op:focus {
  border: 1.5px solid rgb(110,205,212);
}


/***------------------------------------------
      RSS thumbnail
------------------------------------------***/

#feedContainer {
  margin: 0 auto 20px;
  width: 100%;
  word-break: break-all;
  text-align: center;
}

.rss-container {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  padding: 10px;
}

.rss-image {
  width: 130px;
  height: 130px;
  overflow: hidden;
}

.rss-image img {
  margin-top: -10px;
  margin-left: -30px;
  width: 250px;
  max-width: 300%;
  height: auto;
}

.rss-image img.noImage {
  margin: 0;
  width: 130px;
  height: 130px;
}

.rss-bottom {
  padding-top: 20px;
}

.rss-date {
  font-size: 12px;
}


/***------------------------------------------
      title list
------------------------------------------***/

.list-title {
  font-weight: bold;
}

.list-title a {
  text-decoration: none;
}

.list-entry-date, .list-entry-category {
  text-align: right;
}

.list-entry-category span {
  font-size: 12px;
}


/***------------------------------------------
      search
------------------------------------------***/

.searchterms {
  font-size: 15px;
  text-align: center;
}

.list-entry {
  padding-top: 10px;
}

.list-entry p {
  word-break: break-all;
}

.list-entry .list-a {
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;
  width: 220px;
  height: auto;
  text-align: center;
  padding-top: 10px;
  background-color: white;
  outline: 1px solid rgb(221,221,221);
  padding: 10px;
}

.list-a:hover {
  opacity: .7;
}

.thumbnails {
  display: inline-block;
  width: 200px;
  height: auto;
}

.absolute-date {
  font-size: 12px;
  text-transform: uppercase;
  padding-top: 10px;
}

.thumbnail-entry-category {
  font-size: 12px;
  padding-top: 10px;
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
.pager {
  width: 100%;
  margin: 0 auto 40px;
  letter-spacing: normal;
}

.simple-pagination {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.simple-pagination ul {
  display: block;
  list-style: none;
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
}

.simple-pagination li {
  display: inline-block;
  list-style: none;
  padding: 2px;
  display: inline-block;
}

.light-theme a, .light-theme span {
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  line-height: 30px;
  color: rgb(51,51,51);
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  background: transparent;
}

.light-theme a:hover { /* 注)汎用ページ送りマウスオンの文字色・背景色 */
  color: white;
  background-color: rgb(110,205,212);
  opacity: 1;
}

.prev, .next {
  border: none !important;
  font-weight: bolder;
}

.light-theme .current {
  background: rgba(255,255,255,.6);
  color: rgb(51,51,51);
  box-shadow: 0 1px 0 rgba(255,255,255,8), 0 0 2px rgba(0,0,0,.3) inset;
}

.light-theme .ellipse {
  color: rgb(51,51,51);
}

.light-theme .prev, .light-theme .next {
  box-shadow: none;
  background-color: rgb(110,205,212);
  color: white;
}

/* entry */
.posted-pager {
  margin: 0 auto 40px;
  display: table;
  table-layout: fixed;
  width: 98%;
}

.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;
  color: rgb(51,51,51);
  font-size: 12px;
}

.prev-a:before {
  content: "\f104";
  position: absolute;
  font-family: 'FontAwesome';
  width: 30px;
  height: 30px;
  line-height: 30px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgb(110,205,212);
  text-align: center;
  color: white;
  border-radius: 50%;
}

.page-center-cell {
  width: 50px;
  height: auto;
  text-align: center;
}

.center-a {
  width: 100%;
  height: 100%;
  color: white;
}

.center-a .fa {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: rgb(110,205,212);
  border-radius: 50%;
}

.center-a .fa:before {
  line-height: 30px;
}

.next-a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-align: right;
  padding-right: 40px;
  color: rgb(51,51,51);
  font-size: 12px;
}

.next-a:before {
  content: "\f105";
  position: absolute;
  font-family: 'FontAwesome';
  width: 30px;
  height: 30px;
  line-height: 30px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgb(110,205,212);
  text-align: center;
  color: white;
  border-radius: 50%;
}

/* title list */
.titlelist-pager {
  margin: 0 auto 40px;
  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%;
}

.t-center-a {
  text-align: center;
}

.t-next-a {
  text-align: right;
}

.t-prev-a .fa, .t-next-a .fa {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: rgb(110,205,212);
  color: white;
  border-radius: 50%;
}

.t-center-a .fa {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: white;
  background-color: rgb(110,205,212);
  border-radius: 50%;
}

.t-prev-a .fa:before, .t-center-a .fa:before, .t-next-a .fa:before {
  line-height: 30px;
}


/***------------------------------------------
      footer
------------------------------------------***/

.end {
  width: 100%;
  padding: 12px 350px 12px 50px;
  text-align: center;
  line-height: 1.2;
  font-size: 12px;
  letter-spacing: normal;
}

#ad1, #ad2 {
  font-size: 11px;
}

#pagetop {
  display: none;
  position: fixed;
  z-index: 1000005;
  bottom: 140px;
  right: 320px;
  width: 50px;
  height: 40px;
  line-height: 40px;
}

#pagemiddle {
  display: none;
  width: 0;
  height: 0;
  font-size: 0;
}

#pagebottom {
  display: none;
  position: fixed;
  z-index: 1000005;
  bottom: 90px;
  right: 320px;
  width: 50px;
  height: 40px;
  line-height: 40px;
}

#pagemiddle-sp {
  display: none;
  position: fixed;
  z-index: 1000005;
  bottom: 165px;
  right: 10px;
  width: 50px;
  height: 40px;
  line-height: 40px;
  font-size: 12px;
}

#pagetop a, #pagebottom a, #pagemiddle-sp a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  color: rgb(110,205,212);
}

#pagetop .fa, #pagebottom .fa, #pagemiddle-sp .fa,
#pagetop .fa:before, #pagebottom .fa:before, #pagemiddle-sp .fa:before {
  line-height: 40px;
}



.new {
  color: red;
  font-size: 11px;
}


/***------------------------------------------
      side menu
------------------------------------------***/

/* drawer menu on mobile */
.mobile {
  font-size: 26px;
  color: rgb(110,205,212);
  position: fixed;
  top: 0;
  left: 0;
  height: 52px;
  line-height: 52px;
  padding: 0 10px;
  z-index: 1000010;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  tap-highlight-color: rgba(0,0,0,0);
  display: none;
}

.sidenav .mobile-scroll {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 0;
}

.sidenav {
  margin: 0 auto;
  width: 100%;
  background-color: rgb(228,228,228);
}

.plugin-name {
  font-size: 13px;
  padding: 8px 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.sidebar-dl {
  margin: 0 auto;
  color: white; /* 注)サイドバーのプラグイン名文字色 */
  padding: 0 20px;
  
}

.sidenav .sidebar-dl {
  color: rgb(51,51,51);
}

.sidebar-dl dt {
  display: block;
  text-align: center;
  cursor: pointer;
}

.sidebar-dl dd {
  text-align: left;
  display: none; /* 注)サイドバープラグイン展開解除 この一行を削除(htmlにも一箇所あります) */
  height: auto;
  padding: 20px 0;
}

.separate ul li {
  list-style-type: square;
  list-style-position: inside;
}

.separate ul li a {
  color: white; /* 注)サイドバープラグイン内のリスト文字色 */
}

.sidenav .separate ul li a {
  color: rgb(51,51,51);
}

.separate div, .separate div a,
.separate p, .separate p a {
  color: white; /* 注)サイドバープラグイン内のリンク文字色 */
}

.sidenav .separate div, .sidenav .separate div a,
.sidenav .separate p, .sidenav .separate p a {
  color: rgb(51,51,51);
}

.plugin-name:hover {
  background: rgba(255,255,255,.2);
}

.sidebar-dl:first-of-type {
  padding-top: 60px;
}

.sidebar-dl:last-of-type {
  padding-bottom: 60px;
}

.mobile-scroll {
  font-size: 12px;
}

.scroll {
  position: relative;
  overflow: hidden;
  width: 300px;
  height: auto;
  max-height: 100%;
  min-height: 100%;
  background-image: url(https://blog-imgs-88.fc2.com/v/a/n/vanillaice000/overlaytransblack.png);
}

/* official profile */
.plugin-myimage {
  margin-bottom: 10px;
  text-align: center !important; /* 注)プロフ画像中央寄せ指定 */
}

/* official mail form */
.sidealign form {
  width: 100%;
  max-width: 260px;
  display: block;
  margin: 0 auto;
}

.sidealign input, .sidealign textarea {
  display: inline-block;
  width: 100% !important;
  border: 1px solid rgb(51,51,51);
  outline: none;
  padding: .5em;
}

.sidealign a:hover {
  color: rgb(110,205,212);
}

/* official tag */
.plugin-tag a {
  display: inline-block;
  padding: .2em;
  border: 1px solid white;
  margin: 2px;
}


/***------------------------------------------
      calendar (includes official one)
------------------------------------------***/

.calender {
  margin: 0 auto;
  table-layout: fixed;
  width: 260px;
  text-align: center;
  font-size: 12px;
  border-spacing: 4px 3px;
}

.calender caption {
  margin-bottom: 10px;
}

#prevMonth {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 30%;
}

.calender-month-style {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  font-size: 20px;
  font-weight: bolder;
}

#nextMonth {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 30%;
}

.sun {
  color: rgb(161,12,0);
}

.calender td {
  height: 30px;
  line-height: 30px;
  padding: 0;
}

.calender td a {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: white;
  background: rgb(110,205,212);
  border-radius: 50%;
}

.calender td a:hover {
  background: rgb(226,45,122);
}


/***------------------------------------------
      less than 975
------------------------------------------***/

@media screen and (max-width: 975px) {

  #main-container {
    padding: 40px 320px 100px 20px;
  }
  
}


/***------------------------------------------
      less than 854
------------------------------------------***/

@media screen and (max-width: 854px) {

  #main-container {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    padding: 40px 8px 100px;
  }

  #mask-container {
    background-image: url(https://blog-imgs-88.fc2.com/v/a/n/vanillaice000/overlaytransblack.png);
    padding: 50px 5px 30px;
  }

  #blog-head {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  #blog-name a {
    font-size: 18px;
    color: white;
  }

  #subtitle {
    color: white;
  }

  #sns li a {
    color: white;
  }

  #form-table {
    display: block;
    height: auto;
  }

  #form-left-cell {
    display: block;
    width: 100%;
    height: auto;
    padding-right: 0;
    margin-bottom: 40px;
  }

  #comment {
    display: block;
    width: 100%;
    height: 160px;
    min-height: 160px;
  }

  #form-right-cell {
    display: table;
    width: 100%;
    padding-left: 0;
  }

  .static-style {
    margin: 0 auto;
    position: static;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding-bottom: 60px;
    background-color: rgb(240,240,240);  
  }

  .scroll {
    width: 100%;
    background: none;
  }

  .sidebar-dl {
    color: rgb(51,51,51); /* 注)サイドバーのプラグイン名文字色 */
    padding: 0 20px;
    width: 300px;
  }

  .separate ul li a {
    color: rgb(51,51,51); /* 注)サイドバープラグイン内のリスト文字色 */
  }

  .separate div, .separate div a,
  .separate p, .separate p a {
    color: rgb(51,51,51); /* 注)サイドバープラグイン内のリンク文字色 */
  }

  .end {
    padding: 12px 0;
  }

  .contents {
    padding: 20px 10px
  }

  #pagetop {
    bottom: 190px;
    right: 10px;
  }

  #pagebottom {
    right: 10px;
  }

  #pagemiddle {
    display: none;
    position: fixed;
    z-index: 1000005;
    bottom: 140px;
    right: 10px;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }

  #pagemiddle a {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: 40px;
    color: rgb(110,205,212);
  }

  .info { /* 注)記事下フッター */
    font-size: 15px;
  }

  .plugin-tag a {
    border: 1px solid rgb(51,51,51);
  }

}


/***------------------------------------------
      less than 568
------------------------------------------***/

@media screen and (max-width: 568px) {

  .list-entry .list-a {
    float: none;
    display: block;
    margin: 0 auto 20px;
    width: 100%;
    max-width: 300px;
  }

  .thumbnails {
    width: 100%;
  }

  .absolute-date {
    font-size: 12px;
    text-transform: uppercase;
    padding-top: 10px;
  }

  .thumbnail-entry-category {
    font-size: 12px;
    padding-top: 10px;
  }

}


/***------------------------------------------
      personal settings
------------------------------------------***/

/* shadow for image */
.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2); /* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}

.emoji {
  vertical-align: middle;
}

/* 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: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.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: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.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: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.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: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.zoom-in-round:hover:before, .zoom-in-round:hover:after {
  opacity: 1;
}

/* darkbox arrow */
#darkbox_next:hover, #darkbox_prev:hover {
  border-color: rgb(226,45,122) !important;
}