@charset "utf-8";

/**
* Author: Vanillaice (Akira) - http://vanillaice000.blog.fc2.com/
* Website skin name: Velonica
* The first edition: 2017.5.30
* Latest update: 2017.9.22 - SSL化に伴うURL正規化
*/

/***------------------------------------------
      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: rgba(0,0,0,0);
  tap-highlight-color: rgba(0,0,0,0);
  word-wrap: break-word;
}

blockquote {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  background: transparent;
  outline: none;
}

table {
  max-width: 100%;
  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 {
  border-radius: 0;
  outline: none;
  font-size: inherit;
  -webkit-appearance: none;
  appearance: none;}

select {
  outline: none;
  border-radius: 0;
  font-size: inherit;
}

input[type="submit"] {
  border-radius: 0;
  outline: none;
  font-size: inherit;
  -webkit-appearance: button;
  appearance: button;
}

pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  font-family: 'Menlo', 'consolas', 'Courier';
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* fc2 */
.fc2_footer {
  margin: 20px 0 0;
}

#fc2_text_ad {
  letter-spacing: normal;
  font-size: 11px;
  margin-bottom: 0 !important;
}

#fc2_text_ad a {
  font-size: 11px;
  color: rgb(100,100,100);
}

#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: "Jan";
}
span.month02:before {
  content: "Feb";
}
span.month03:before {
  content: "Mar";
}
span.month04:before {
  content: "Apr";
}
span.month05:before {
  content: "May";
}
span.month06:before {
  content: "June";
}
span.month07:before {
  content: "July";
}
span.month08:before {
  content: "Aug";
}
span.month09:before {
  content: "Sept";
}
span.month10:before {
  content: "Oct";
}
span.month11:before {
  content: "Nov";
}
span.month12:before {
  content: "Dec";
}


/***------------------------------------------
      link
------------------------------------------***/

a {
  text-decoration: none;
  color: rgb(142,105,145); /* 注)基本リンク色 */
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

a:hover {
  color: rgb(51,51,51);
}


/***------------------------------------------
      layout
------------------------------------------***/

html,
body {
  height: 100%;
}

body { /* 注)記事内基本フォント関連 */
  background-color: rgb(240,240,240);
  color: rgb(51,51,51); /* 注)テキスト基本色 Night Rider */
  font: 14px/1.9 'Lato', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック', 'Hiragino Sans', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'sans-serif';
  -webkit-font-smoothing: antialiased; /* 注)文字が細すぎると感じる方はこの一行削除 1/2 */
  -moz-osx-font-smoothing: grayscale; /* 注)文字が細すぎると感じる方はこの一行削除 2/2 */
}

#wrapper {
  margin: 0 auto;
  width: 100%;
  min-width: 80%;
}

@media screen and (max-width: 1090px) {
  #wrapper {
    padding: 0 10px;
  }
}

#main-container {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 80px 120px;
}

@media screen and (max-width: 1160px) {
  #main-container {
    padding: 0 60px;
  }
}

@media screen and (max-width: 1130px) {
  #main-container {
    padding: 0 40px 80px;
  }
}

@media screen and (max-width: 1090px) {
  #main-container {
    display: block;
    padding: 0 0 80px;
  }
}

#primary {
  margin: 0 auto;
  min-width: 0;
  flex-basis: 600px;
  flex-grow: 1;
  flex-shrink: 1;
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
}

@media screen and (max-width: 1090px) {
  #primary {
    max-width: 800px;
  }
}

#main-fit-wrapper {
  padding-top: 50px;
}

#secondary {
  margin-left: 30px;
  width: 300px;
  min-width: 0;
  -webkit-animation: fadeIn 1.5s;
  animation: fadeIn 1.5s;
}

#aside-container {
  -webkit-animation: fadeIn 1.2s;
  animation: fadeIn 1.2s;
}

#fit-wrapper {
  padding-top: 50px;
}

.fit-sidebar-fixed {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  position: fixed;
}

.fit-sidebar-blank {
  z-index: 0;
  background-color: transparent;
  visibility: hidden;
}

.side-menu-btn {
  display: none;
}

.check {
  display: none;
}

@media screen and (max-width: 1090px) {
  #secondary {
    margin-left: 0;
    width: 300px;
    height: 100%;
    background: rgb(240,240,240);
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    -webkit-animation: none;
    animation: none;
  }
  .check:checked ~ #wrapper #secondary {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 1000009;
  }
  .check:checked ~ .pc-control {
    height: 100%;
    overflow: hidden;
  }
  .check:checked ~ #wrapper .navi-container {
    visibility: hidden;
  }
  .side-menu-btn {
    display: block;
    cursor: pointer;
    width: 48px;
    height: 40px;
    padding: 10px 10px 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000010;
    font-size: 20px;
  }
  .side-menu-btn span {
    display: block;
    width: 28px;
    margin-bottom: 5px;
    height: 3px;
    background: rgb(51,51,51); /* 注)上部ナビゲーションハンバーガーボタンの色 スマホのみ */
    border-radius: 1000px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  .check:checked ~ .side-menu-btn span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    -moz-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
  }
  .check:checked ~ .side-menu-btn span:nth-of-type(2) {
    opacity: 0;
  }
  .check:checked ~ .side-menu-btn span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    -moz-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
  }
  .side-close-menu {
    position: fixed;
    top: 0;
    right: 300px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    opacity: 0;
  }
  .check:checked ~ .side-close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    background: rgba(0,0,0,.7);
    visibility: visible;
    opacity: 1;
    z-index: 100005;
  }
  #aside-container {
    height: 100%;
    overflow: auto;
    padding: 50px 20px 100px;
    -webkit-overflow-scrolling: touch;
  }
}

/* animation */
@-webkit-keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
   opacity: 0;
  }
  50% {
   opacity: 0;
  }
  100% {
   opacity: 1;
  }
}


/***------------------------------------------
      header
------------------------------------------***/

#header-wrapper {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  padding: 50px 80px 0;
  font-family: 'Fanwood Text', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
}

@media screen and (max-width: 1160px) {
  #header-wrapper {
    padding: 50px 60px 0;
  }
}

@media screen and (max-width: 1130px) {
  #header-wrapper {
    padding: 50px 40px 0;
  }
}

@media screen and (max-width: 1090px) {
  #header-wrapper {
    display: block;
    max-width: 800px;
    padding: 50px 0 0;
  }
}

@media screen and (max-width: 767px) {
  #header-wrapper {
    padding: 50px 0 0;
  }
}

#header-banner {
  max-width: 800px;
  padding-bottom: 15px;
}

@media screen and (max-width: 767px) {
  #header-banner {
    padding-bottom: 20px;
  }
}

#blog-title { /* 注)ブログタイトルフォント関連 */
  margin: 0 auto 15px;
  line-height: 1.4;
  font-size: 24px;
  font-weight: normal;
  text-transform: uppercase; /* 注)ブログタイトル欧文大文字縛り解除はこの一行削除 */
}

/* blog-title breakpoint */
@media screen and (max-width: 639px) {
  #blog-title {
    font-size: 22px;
  }
}

#blog-title a {
  color: rgb(51,51,51); /* 注)ブログタイトルリンク色 */
}

#site-description {
  font-size: 12px;
}

#site-description span {
  letter-spacing: 1px;
  text-transform: uppercase;
}


/***------------------------------------------
      navigation
------------------------------------------***/

/* hamburger button animation */
.mobile-toggle {
  display: none;
  margin: 0 auto;
  cursor: pointer;
  width: 50px;
  line-height: 40px;
  z-index: 1000009;
  font-size: 12px;
  text-align: center;
}

.mobile-toggle-adjust {
  top: 27px;
}

@media screen and (max-width: 767px) {
  .mobile-toggle {
    display: block;
  }
}

.navi-container {
  margin-left: auto;
  letter-spacing: 1px;
  font-size: 11px;
  text-align: right;
  text-indent: 1px;
  text-transform: uppercase;
  -webkit-transition: .3s ease-in-out;
  transition: .13 ease-in-out;
}

@media screen and (max-width: 1090px) {
  .navi-container {
    margin: 0 auto;
    text-align: center;
  }
}

.navi-item-ul {
  display: inline-block;
  position: relative;
}

.navi-item-ul li {
  display: inline-block;
  margin-right: 2em;
  line-height: 40px;
  vertical-align: top;
}

.navi-item-ul li:last-of-type {
  margin-right: 0;
}

.navi-item-ul li:not(#expand-form) {
  position: relative;
  z-index: 3;
}

.navi-item-ul .pc-hide {
  display: none;
}

.navi-item-ul li a {
  color: rgb(51,51,51);
}

.navi-item-ul .pc-hide {
  display: none;
}

/* navi breakpoint 1/2 */
@media screen and (max-width: 767px) {
  .navi-container {
    height: auto;
  }
  .sp-navi {
    display: none;
    width: 100%;
    height: auto;
    float: none;
    overflow-y: auto;
    padding: 40px 0;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }
  .sticky .sp-navi {
    max-height: 400px;
  }
  .sp-navi .navi-item-ul {
    display: block;
    text-align: center;
  }
  .navi-item-ul li {
    margin-right: 0;
  }
  .sp-navi .navi-item-ul li {
    display: block;
    line-height: 1.3;
    padding: .8em;
  }
  .sp-navi .navi-item-ul .pc-hide {
    display: none;
  }
}

.sticky {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 4px -1px rgba(0,0,0,.06),
              0 4px 5px 0 rgba(0,0,0,.06),
              0 1px 10px 0 rgba(0,0,0,.08);
  float: none;
  position: fixed;
  z-index: 100004;
  top: 0;
  right: 0;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.sticky .navi-sizing {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  padding: 0 80px;
}

@media screen and (max-width: 1160px) {
  .sticky .navi-sizing {
    padding: 0 60px;
  }
}

@media screen and (max-width: 1130px) {
  .sticky .navi-sizing {
    padding: 0 40px;
  }
}

@media screen and (max-width: 1090px) {
  .sticky .navi-sizing {
    max-width: 800px;
    padding: 0 10px;
  }
}

.sticky .navi-item-ul {
  padding-top: 0;
}

.sticky #search-form {
  top: 0;
}

.navi-container-adjust,
.sp-navi-container-adjust {
  top: 27px;
}

#expand-form {
  width: 35px;
  height: 40px;
}

@media screen and (max-width: 767px) {
  #expand-form {
    margin: 0 auto;
    width: 90%;
    max-width: 380px;
    height: auto;
    position: relative;
  }
}

#search-form {
  margin: 0;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  #search-form {
    position: relative;
  }
}

#search-btn {
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  line-height: 40px;
  position: absolute;
  top: 0;
  right: 2px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #search-btn {
    right: 0;
  }
}

#search-btn .fa {
  color: rgb(51,51,51);
}

#search-text {
  width: 35px;
  height: 40px;
  background-color: rgb(250,250,250);
  border: none;
  border-radius: 22px;
  color: rgb(51,51,51);
  cursor: pointer;
  opacity: 0;
  outline: none;
  padding: 0 1em;
  position: absolute;
  top: 0;
  right: 0;
  transition: all .5s;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  #search-text {
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid rgb(51,51,51);
    border-radius: 0;
    opacity: 1;
    position: static;
  }
}

#search-text:focus {
  width: 100%;
  cursor: text;
  opacity: 1;
}

#search-text::-webkit-input-placeholder {
  color: rgb(51,51,51);
  font-family: 'Georgia', 'serif';
  font-size: 12px;
  font-style: italic;
}

#search-text::-moz-placeholder {
  color: rgb(51,51,51);
  font-family: 'Georgia', 'serif';
  font-size: 12px;
  font-style: italic;
}

#search-text::placeholder {
  color: rgb(51,51,51);
  font-family: 'Georgia', 'serif';
  font-size: 12px;
  font-style: italic;
}

#search-submit {
  display: none;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0,-100%,0);
    transform: translate3d(0,-100%,0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}


/***------------------------------------------
      header SNS
------------------------------------------***/

#header-sns-ul {
  margin: 0 auto;
  width: 100%;
  max-width: 1300px;
  padding: 15px 80px 0;
}

@media screen and (max-width: 1160px) {
  #header-sns-ul {
    padding: 15px 60px 0;
  }
}

@media screen and (max-width: 1130px) {
  #header-sns-ul {
    padding: 15px 40px 0;
  }
}

@media screen and (max-width: 1090px) {
  #header-sns-ul {
    max-width: 800px;
    padding: 15px 0 0;
    text-align: center;
  }
}

#header-sns-ul li {
  display: inline-block;
  margin-right: 1.6em;
}

#header-sns-ul li:last-of-type {
  margin-right: 0;
}

#header-sns-ul a {
  color: rgb(100,100,100);
}

/* sns brand color */
#h-facebook:hover {
  color: rgb(59,89,152);
}

#h-twitter:hover {
  color: rgb(73,171,242);
}

#h-pinterest:hover {
  color: rgb(206,15,25);
}

#h-instagram:hover {
  color: rgb(63,114,155);
}

#h-google-plus:hover {
  color: rgb(221,75,57);
}


/***------------------------------------------
      top page grid
------------------------------------------***/

#grid-container {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -10px;
}

@media screen and (max-width: 1090px) {
  #grid-container {
    margin-left: 0;
  }
}

.element-item {
  width: 50%;
  min-width: 0;
  flex-shrink: 1;
  padding: 0 10px 20px;
}

@media screen and (max-width: 1090px) {
  .element-item:nth-of-type(odd) {
    padding-left: 0;
  }
  .element-item:nth-of-type(even) {
    padding-right: 0;
  }
}

@media screen and (max-width: 700px) {
  .element-item {
    margin: 0 auto;
    width: 100%;
    max-width: 450px;
    padding: 0 0 20px;
  }
}

.element-wrapper {
  position: relative;
}

.element-wrapper:before {
  content: "";
  display: block;
  padding-top: 140%;
}

.inner-parent {
  width: 100%;
  height: 100%;
  background-color: white;
  box-shadow:4px 4px 13px -1px rgba(0,0,0,.2);
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.inner-parent a {
  color: white;
}

.imgLiquidFill {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.imgLiquidFill:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.3);
  position: absolute;
  top: 0;
  left: 0;
}

.imgLiquidFill:after {
  content: "";
  display: block;
  background: inherit;
  position: absolute;
  top: -5px;
  right: -5px;
  bottom: -5px;
  left: -5px;
  z-index: -1;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.imgLiquidFill:hover:after {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.element-content {
  color: white;
  padding: 40px;
  position: relative;
  z-index: 3;
}

.element-title {
  margin: 0 auto 20px;
  max-height: 5.6em;
  line-height: 1.4em;
  overflow: hidden;
  font-size: 15px; /* 注)トップページグリッド記事タイトル大きさ */
}

.upper-box,
.lower-box {
  line-height: 38px;
  overflow: hidden;
  font-size: 11px;
}

.element-datetime {
  height: 40px;
  border: 2px solid white;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.element-day {
  font-size: 20px;
}

.element-month,
.element-year {
  margin-left: .5em;
}

.element-category {
  height: 40px;
  border: 2px solid white;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.element-author {
  height: 40px;
  border: 2px solid white;
  border-top-width: 1px;
  border-right-width: 1px;
}

.element-comment {
  height: 40px;
  border: 2px solid white;
  border-top-width: 1px;
  border-left-width: 1px;
}

.element-comment span {
  margin-right: .5em;
}

.element-datetime,
.element-comment {
  width: 45%;
  float: left;
  overflow: hidden;
  padding: 0 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.element-category,
.element-author {
  width: 55%;
  float: left;
  overflow: hidden;
  padding: 0 8px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.element-description {
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
}

.view-more-container {
  width: 100%;
  color: white;
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 3;
  text-align: center;
}

.view-more,
.get-in-touch {
  -webkit-transform: translate3d(0,40px,0);
  transform: translate3d(0,40px,0);
}

.view-more {
  padding-bottom: 10px;
  font-size: 16px;
  -webkit-transition: -webkit-transform .35s;
  transition: transform .35s;
  text-transform: uppercase;
}

.get-in-touch {
  color: rgba(255,255,255,.8);
  opacity: 0;
  -webkit-transition: opacity .2s, -webkit-transform .35s;
  transition: opacity .2s, transform .35s;
}

.imgLiquidFill:hover .view-more,
.imgLiquidFill:hover .get-in-touch {
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.imgLiquidFill:hover .get-in-touch {
  opacity: 1;
  -webkit-transition-delay: .05s;
  transition-delay: .05s;
  -webkit-transition-duration: .35s;
  transition-duration: .35s;
}

/* New ribbon */
.ribbon-wrapper {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 12px;
}

.ribbon {
  margin: auto;
  width: 36px;
  height: 40px;
  background-image: -ms-radial-gradient(center top, circle farthest-side, rgb(225,0,0) 0%, rgb(153,0,0) 100%);
  background-image: -moz-radial-gradient(center top, circle farthest-side, rgb(225,0,0) 0%, rgb(153,0,0) 100%);
  background-image: -o-radial-gradient(center top, circle farthest-side, rgb(225,0,0) 0%, rgb(153,0,0) 100%);
  background-image: -webkit-gradient(radial, center top, 0, center top, 487, color-stop(0, rgb(225,0,0)), color-stop(1, rgb(153,0,0)));
  background-image: -webkit-radial-gradient(center top, circle farthest-side, rgb(225,0,0) 0%, rgb(153,0,0) 100%);
  background-image: radial-gradient(circle farthest-side at center top, rgb(225,0,0) 0%, rgb(153,0,0) 100%);
  position: relative;
  font-family: 'Fanwood Text', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
}

.ribbon:before{
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid rgb(153,0,0);
  border-right: 18px solid transparent;
  position: absolute;
  bottom: -17px;
  left: 0;
}

.ribbon:after{
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid rgb(153,0,0);
  border-left: 18px solid transparent;
  position: absolute;
  bottom: -17px;
  right: 0;
}

.ribbon i {
  display: block;
  margin: auto;
  width: 90%;
  height: 120%;
  border-right: dashed .0625em rgb(51,51,51);
  border-left: dashed .0625em rgb(51,51,51);
  overflow: hidden;
  padding-bottom: .6em;
  position: relative;
  z-index: 100;
}

.ribbon i span{
  display: block;
  color: white;
  top: 50%;
  margin-top: -10px;
  position: relative;
  font-size: 11px;
  font-style: normal;
  text-align: center;
  text-shadow: .0625em .0625em .0625em rgb(51,51,51);
  text-transform: uppercase;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}


/***------------------------------------------
      individual article
------------------------------------------***/

.main-body {
  margin-bottom: 40px;
  background-color: white;
  padding: 0 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .main-body {
    padding: 0 15px;
  }
}

/* header */
#entry-header {
  padding: 20px 0;
  position: relative;
  font-size: 12px;
}

#entry-header:before {
  content: "";
  margin: auto;
  width: 2px;
  background-color: rgb(51,51,51);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
}

@media screen and (max-width: 768px) {
  #entry-header:before {
    left: -15px;
  }
}

#entry-day,
#entry-month,
#entry-year {
  display: inline-block;
  margin-right: .3em;
}

#entry-day {
  font-size: 20px;
}

#entry-title {
  margin: 0 auto;
  line-height: 1.4;
  padding: 10px 0;
  font-size: 18px;
  font-weight: bolder;
}

#entry-cm-tb-ul li {
  display: inline-block;
}

#entry-cm-tb-ul li:nth-of-type(2) {
  margin-left: 1.5em;
}

#entry-cm-tb-ul li span {
  margin-right: .5em;
}

/* content */
.contents {
  padding: 20px 0;
}

/* back to default */
#inner-contents ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}

#inner-contents ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}

#inner-contents a:hover {
  text-decoration: underline;
}

/* user tag */
#user-tags {
  display: inline-block;
  padding-bottom: 20px;
}

#user-tags a {
  display: inline-block;
  margin: 0 2px 3px;
  padding: .2em .8em;
  border: 1px solid rgb(200,200,200);
}

#user-tags a:hover {
  background-color: rgb(104,86,169);
  border-color: rgb(104,86,169);
  color: white;
}

/* article footer */
#entry-footer {
  font-size: 12px;
}

#entry-author-ul {
  margin: 0;
  list-style: none;
  padding-bottom: 20px;
}

#entry-author-ul li {
  display: inline-block;
  vertical-align: middle;
}

#author-shot {
  display: inline-block;
  margin-right: 10px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

/* sns */
#entry-footer-sns-ul {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  padding-top: 30px;
}

#entry-footer-sns-ul .fa {
  line-height: 30px;
}

#entry-footer-sns-ul li {
  flex: 1;
  margin: 0 1px;
  height: 30px;
  letter-spacing: .15em;
  position: relative;
  font: 11px/30px 'Fanwood Text', 'serif';
  text-align: center;
  text-indent: .15em;
  text-transform: uppercase;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
}

#c-facebook {
  border-bottom: 2px solid rgb(59,89,152);
}

#c-twitter {
  border-bottom: 2px solid rgb(73,171,242);
}

#c-pinterest {
  border-bottom: 2px solid rgb(206,15,25);
}

#c-google-plus {
  border-bottom: 2px solid rgb(221,75,57);
}

#c-pencil {
  border-bottom: 2px solid rgb(104,86,169);
}

#entry-footer-sns-ul li:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

#c-facebook:before {
  background-color: rgb(59,89,152);
}

#c-twitter:before {
  background-color: rgb(73,171,242);
}

#c-pinterest:before {
  background-color: rgb(206,15,25);
}

#c-google-plus:before {
  background-color: rgb(221,75,57);
}

#c-pencil:before {
  background-color: rgb(104,86,169);
}

#entry-footer-sns-ul li:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

#entry-footer-sns-ul li a:hover {
  color: white;
}

#entry-footer-sns-ul li:first-of-type {
  margin-left: 0;
}

#entry-footer-sns-ul li:last-of-type {
  margin-right: 0;
}

#entry-footer-sns-ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
}

#entry-footer-sns-ul .pc-hide {
  display: none;
}

@media screen and (max-width: 768px) {
  #entry-footer-sns-ul .sp-hide {
    display: none;
  }
}


/***------------------------------------------
      related post, trackback list
------------------------------------------***/

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  margin: 100px auto 0;
  border: 1px solid rgb(230,230,230);
  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%;
  padding-top: 20px;
  position: absolute;
  top: -50px;
  z-index: 3;
  font: 16px/1.3 'Fanwood Text', '游ゴシック体', 'YuGothic', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', '游ゴシック', 'Yu Gothic', 'メイリオ', 'Meiryo', 'serif';
  text-transform: uppercase;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
  overflow: hidden;
  padding: 6px 10px;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
  width: 50%;
  height: 88px;
  float: left;
}

@media screen and (max-width: 567px) {
  #fc2relate_entry_thumbnail_area .relate_dd {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul {
    width: 1470px;
    overflow: auto;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 290px;
  }
}

@media screen and (max-width: 320px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 260px;
  }
}

#fc2relate_entry_thumbnail_area .relate_entry_title {
  padding-right: 1em;
  word-break: break-all;
  font-size: 12px;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail .relate_entry_thumbnail_noimg {
  border-radius: 3px;
  position: relative;
  z-index: 1;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail_noimg[src="https://static.fc2.com/image/sh_design/no_image/no_image_144x144.png"] {
  visibility: hidden;
}

.related-overlay {
  position: relative;
}

.related-overlay:before {
  content: "No image";
  width: 80px;
  height: 80px;
  background-color: rgb(250,250,250); /* 注)No image 関連記事サムネイル背景色 */
  border-radius: 2px;
  color: rgb(100,100,100);
  letter-spacing: 1px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  font: 10px/80px 'Fanwood Text', 'serif';
  font-size: 11px;
  text-align: center;
}

#fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
  border-radius: 3px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

#fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img  {
  width: 80px !important;
  height: 80px !important;
  border-radius: 3px;
}

@media screen and (max-width: 479px) {
  #fc2relate_entry_thumbnail_area .relate_entry_thumbnail {
    width: 80px !important;
    height: 80px !important;
  }
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul .relate_entry_thumbnail img {
    width: 80px !important;
    height: 80px !important;
  }
}

/* without thumbnail */
.relate_dl,
.tb_dl {
  margin-top: 30px;
  border: 1px solid rgb(230,230,230);
  border-radius: 2px;
  letter-spacing: normal;
  padding: 10px;
}

.relate_dt,
.tb_dt {
  padding: 3px;
  font-weight: bold;
}

.date {
  padding-top: 10px;
}

.relate_ul,
.tb_ul {
  padding: 10px 0;
  font-size: 12px;
}

.relate_dl a,
.tb_dl a {
  color: rgb(165,164,179)
}

.relate_dl a:hover,
.tb_dl a:hover {
  text-decoration: underline;
}


/***------------------------------------------
      posted comment
------------------------------------------***/

/* Index, Comment などタイトル */
.another-title {
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
  font: normal 16px/1.4 'Fanwood Text', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
  text-transform: uppercase;
}

.another-title:before {
  content: "";
  display: block;
  margin: auto;
  width: 2px;
  background-color: rgb(51,51,51);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
}

@media screen and (max-width: 768px) {
  .another-title:before{
    left: -15px;
  }
}

.another-title span {
  margin-left: 1em;
  letter-spacing: normal;
  font: 13px/1.4 'Lato', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴシック', 'Hiragino Sans', '游ゴシック体', 'YuGothic', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'sans-serif';
  text-transform: none;
}

.height-adjust {
  margin-top: -40px;
  padding-top: 60px;
}

.border-container {
  min-height: 46px;
  padding-left: 55px;
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.border-container:before {
  content: "\f007";
  display: inline-block;
  width: 46px;
  height: 46px;
  background-color: rgb(207,207,207); /* 注)訪問者アイコン背景色 */
  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;
}

.arrow-box {
  margin: 20px auto 0;
  background-color: rgb(250,250,250); /* 注)コメント一覧背景色 */
  padding: 15px 20px;
  position: relative;
}

.arrow-box:after {
  content: "";
  margin-left: -12px;
  height: 0;
  width: 0;
  border: solid transparent;
  border-color: rgba(250,250,250,0); /* 注)コメント一覧矢印の色 */
  border-bottom-color: rgb(250,250,250); /* 注)コメント一覧矢印の色 */
  border-width: 12px;
  pointer-events: none;
  position: absolute;
  left: 8%;
  bottom: 100%;
}

.comment-body {
  padding-bottom: 10px;
  font-size: 13px;
}

.comment-info {
  text-align: right;
  font-size: 13px;
}


/***------------------------------------------
      comment form
------------------------------------------***/

.main-body-adjust {
  margin-top: -40px;
  padding-top: 40px;
}

#comment_form {
  margin: 0 auto;
  width: 100%;
  vertical-align: middle;
  text-decoration: none;
}

#left-half {
  display: inline-block;
  margin-right: 1%;
  width: 49%;
}

#right-half {
  display: inline-block;
  margin-left: 1%;
  width: 49%;
}

#comment_form input {
  margin-bottom: 15px;
  width: 100%;
  background-color: rgb(250,250,250); /* 注)コメントフォーム背景色*/
  border: 1px solid rgb(240,240,240); /* 注)コメントフォームボーダー色 */
  padding: 12px;
}

#comment_form #password {
  width: 50%;
}

#comment_form input:focus,
#comment:focus {
  background-color: white;
  border: 1px solid rgb(51,51,51);
}

#comment {
  margin: 0;
  margin-bottom: 15px;
  width: 100%;
  min-height: 200px;
  background-color: rgb(250,250,250); /* 注)コメントフォーム本文背景色 */
  border: 1px solid rgb(240,240,240); /* 注)コメントフォーム本文ボーダー色 */
  line-height: 1.5;
  padding: 12px;
}

#comment_form input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(250,250,250) inset;
}

#comment_form input::-webkit-input-placeholder,
#comment_form textarea::-webkit-input-placeholder {
  letter-spacing: 1px;
  font-family: 'Fanwood Text', 'serif';
  font-size: 11px;
  text-transform: uppercase;
}

#comment_form input::-moz-placeholder,
#comment_form textarea::-moz-placeholder {
  letter-spacing: 1px;
  font-family: 'Fanwood Text', 'serif';
  font-size: 11px;
  text-transform: uppercase;
}

#comment_form input::placeholder,
#comment_form textarea::placeholder {
  letter-spacing: 1px;
  font-family: 'Fanwood Text', 'serif';
  font-size: 11px;
  text-transform: uppercase;
}

/* checkbox */
#no-p input:focus {
  outline: none;
}

#no-p input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#no-p input[type=checkbox] + label {
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
  line-height: 1.5px;
  position: relative;
  left: 0;
}
 
@media (min-width: 1px) {
  #no-p input[type=checkbox] {
    display: none;
    margin: 0;
  }

  #no-p input[type=checkbox] + label {
    padding: 2px 0 0 24px;
  }

  #no-p input[type=checkbox] + label:before {
    content: "";
    display: block;
    margin-top: -10px;
    width: 18px;
    height: 18px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
  }

  #no-p input[type=checkbox] + label:before {
    border: 1px solid rgb(220,220,220); /* 注)secretコメントチェックボックスボーダー色 */
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
  }

  #no-p input[type=radio]:checked + label:after {
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background: rgb(51,51,51); /* 注)secretコメントチェックマーク色 */
    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コメントチェックマーク色 */
    border-left: 3px solid rgb(51,51,51); /* 注)secretコメントチェックマーク色 */
    left: 3px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  margin-top: 20px;
  width: 49%;
  max-width: 156px;
  height: 36px;
  background-color: rgb(62,54,88); /* 注)コメントsend, deleteボタン背景色 */
  border: none;
  color: white; /* 注)send, deleteボタンテキスト色 */
  cursor: pointer;
  font-family: 'Fanwood Text', 'serif';
  font-size: 14px; /* 注)send, deleteボタンフォント大きさ */
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  background-color: rgb(142,105,145); /* 注)コメントsend, deleteボタンボバー時背景色 */
}

#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); /* 注)トラックバックボーダー色 */
  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); /* 注)トラックバックフォーカス時ボーダー色 */
}


/***------------------------------------------
      index (title list), search page
------------------------------------------***/

.list-title {
  margin: 0 auto;
  line-height: 1.5;
  font-weight: bolder;
  font-size: 15px; /* 注)全記事リスト記事タイトルフォント大きさ */
}

.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;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.search-noimage {
  width: 100%;
  height: 100%;
  background-color: rgb(250,250,250); /* 注)No image 検索結果サムネイル背景色 */
  position: relative;
}

.search-noimage:before {
  content: "No image";
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(100,100,100);
  letter-spacing: 1px;
  position: absolute;
  font: 10px/72px 'Fanwood Text', 'serif';
  text-align: center;
}

/* the number of comment/ trackback */
.number-of-cmtb {
  text-align: right;
}

.number-of-cmtb li {
  display: inline-block;
  margin-left: 1em;
}

/* only for search */
.hit-number {
  display: none;
  color: rgb(200,200,200);
  line-height: 1.1;
  padding: 20px 0;
  text-align: center;
  font-size: 80px;
}

.hit0 span {
  color: rgb(200,200,200);
  font-size: 15px;
}

.hit0 {
  display: block;
}


/***------------------------------------------
      side menu(secondary)
------------------------------------------***/

.side-menu {
  margin: 0 auto;
  width: 100%;
  line-height: 1.8;
  position: relative;
  font-size: 12px; /* 注)サイドメニューフォント大きさ */
}

@media screen and (max-width: 599px) {
  .side-menu {
    width: 100%;
    max-width: 400px;
  }
}

.side-menu ul {
  margin-left: 1.5em;
  list-style-type: disc;
}

.sidebar-style {
  text-align: left;
}

.side-menu h4 {
  margin: 0 auto 15px;
  background-size: 80px auto;
  border-bottom: 1px solid rgb(215,215,215);
  box-shadow: 0px 1px 0px white;
  font: 13px/1.4 'Fanwood Text', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
  letter-spacing: 1px;
  padding: 0 15px 15px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.slide-trigger {
  cursor: crosshair;
}

.slide-trigger .fa-chevron-down {
  display: inline-block;
  color: rgb(200,200,200);
  position: absolute;
  right: 2px;
  bottom: 20px;
  font-size: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

.open-sidemenu .fa-chevron-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.side-drawer {
  display: none;
  padding: 20px 20px 40px;
}

.non-side-drawer {
  display: block;
  padding: 20px 20px 40px;
}


/***------------------------------------------
      official plug-in
------------------------------------------***/

/* calendar */
.calender {
  margin: 0 auto;
  table-layout: fixed;
  width: 100%;
  text-align: center;
  font-size: 12px;
  border-spacing: 3px 6px;
}

.calender caption {
  margin-bottom: 10px;
  width: 100%;
}

.calender caption a {
  display: inline-block;
  width: 20%;
}

.sun {
  color: rgb(161,12,0);
}

.calender td {
  height: 30px;
  line-height: 30px;
  padding: 0;
}

.calender td a {
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid rgb(220,220,220);
  border-radius: 50%;
  line-height: 28px;
}

.calender td a:hover {
  background-color: rgb(62,54,88);
  border: 1px solid rgb(62,54,88);
  color: white;
  text-decoration: none;
}

/* profile */
.plugin-myimage {
  margin-bottom: 10px;
  text-align: center !important;
}

.plugin-myimage img {
  width: 100%;
  max-width: 218px;
  height: auto;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: 0 auto;
}

.sidebar-style input:not([type="submit"]),
.sidebar-style textarea,
.sidebar-style select {
  display: inline-block;
  width: 100% !important;
  background-color: white;
  border: 1px solid rgb(220,220,220);
  border-radius: 1px;
  outline: none;
  padding: .5em;
}

.sidebar-style input[type="submit"] {
  background-color: rgb(104,86,169);
  border: none;
  color: white;
  cursor: pointer;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.sidebar-style input[type="submit"]:hover {
  background-color: rgb(142,105,145);
}

/* search */
.plugin-search {
  margin: 0 auto;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 0 2px 4px 0;
  border: 1px solid rgb(200,200,200);
  padding: .2em .8em;
}

.plugin-tag a:hover {
  background-color: rgb(104,86,169);
  border-color: rgb(104,86,169);
  color: white;
  text-decoration: none;
}


/***------------------------------------------
      pager
------------------------------------------***/

/* general */
.pager {
  margin: 60px auto 40px;
  width: 100%;
  font-family: 'Times New Roman', 'serif';
  font-size: 11px;
}

.simple-pagination {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.simple-pagination ul {
  margin: 0;
  list-style: none;
  padding: 0;
  position: relative;
  text-align: center;
}

.simple-pagination li {
  display: inline-block;
  margin: 0 5px 3px 0;
  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;
  list-style: none;  
}

.light-theme a,
.light-theme span {
  display: block;
  width: 32px;
  height: 32px;
  background: transparent;
  color: rgb(51,51,51);
  line-height: 32px;
  vertical-align: middle;
  text-align: center;
}

.light-theme a:hover {
  background-color: rgb(142,105,145); /* 注)汎用ページ送りマウスホバー時背景色 */
  color: white;
  opacity: 1;
}

.prev,
.next {
  border: none !important;
  font-weight: bolder;
}

.light-theme .current {
  background-color: rgb(220,220,220); /* 注)汎用ページ送り現在ページ背景色 */
  color: rgb(51,51,51);
}

.light-theme .ellipse {
  font-weight: bold;
  color: rgb(51,51,51);
}

.light-theme .prev,
.light-theme .next {
  background-color: rgb(62,54,88); /* 注)汎用ページ送りprev/ next背景色 */
  box-shadow: none;
  color: white;
}

/* article, titlelist */
.posted-pager,
.titlelist-pager {
  display:-webkit-box;/* fallback old Android */
  display:-ms-flexbox;/* fallback ie10 */
  display: -webkit-flex;/* fallback old safari */
  display: flex;
  margin: 60px auto 40px;
  width: 100%;
  font-size: 12px; /* 注)個別記事ページ送りフォント大きさ */
}

.prev-entry,
.next-entry {
  width: 50%;
}

.prev-entry {
  margin-right: 1px;
}

.next-entry {
  margin-left: 1px;
  text-align: right;
}

.prev-a,
.next-a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  position: relative;
  padding: 20px;
}

.titlelist-pager .prev-a,
.titlelist-pager .next-a {
  background-image: url(https://blog-imgs-106-origin.fc2.com/v/a/n/vanillaice000/veronicanoimageth.jpg); /* 注)全記事リストページ送り背景画像 */
}

.prev-a:before,
.next-a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.prev-a:hover:before,
.next-a:hover:before {
  background-color: rgba(0,0,0,.5);
}

@media screen and (max-width: 599px) {
  .prev-a,
  .next-a {
    padding: 10px;
  }
}

.prev-a .preventry-text,
.next-a .nextentry-text {
  color: white;
  position: relative;
  z-index: 3;
}

.preventry-text,
.nextentry-text,
.t-preventry-text,
.t-nextentry-text {
  padding-bottom: 10px;
  font-family: 'Lato', 'serif';
  text-transform: uppercase;
}

@media screen and (max-width: 599px) {
  .prev-a,
  .next-a {
    padding-bottom: 5px;
  }
}

.preventry-text .fa,
.t-preventry-text .fa {
  margin-right: 1em;
}

.nextentry-text .fa,
.t-nextentry-text .fa {
  margin-left: 1em;
}

.preventry-title,
.nextentry-title,
.t-preventry-text,
.t-nextentry-text {
  height: 3em;
  min-height: 3em;
  line-height: 1.5em;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.prev-a:hover,
.next-a:hover {
  background-color: rgba(0,0,0,.8); /* 注)個別記事ページ送りホバー時背景色 */
  color: white;
}

.prev-a:hover .preventry-text,
.next-a:hover .nextentry-text {
  color: white; /* 注)個別記事ページ送りホバー時テキスト色 */
}

/* side pagination */
.side-pager-left,
.side-pager-right {
  width: 180px;
  height: 80px;
  opacity: 0;
  position: fixed;
  z-index: 100004;
  top: 40%;
  font-size: 12px; /* 注)サイドページ送りフォント大きさ */
  -webkit-transition: opacity .7s ease;
  transition: opacity .7s ease;
  
}

.side-pager-left {
  left: -157px;
}

.side-pager-right {
  right: -157px;
}

.page-div-right,
.page-div-left {
  display: block;
  margin: 0;
  width: 180px;
  height: 80px;
}

.side-pager-right a,
.side-pager-left a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
  word-break: break-all;
  -webkit-transition: none;
  transition: none;
}

.page-table {
  display: table;
  width: 100%;
  height: 100%;
}

.circle-cell,
.circle-cell {
  display: table-cell;
  width: 80px;
  height: 80px;
  vertical-align: top;
}

.circle-left,
.circle-right {
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgba(62,54,88,.4);
  background-position: center center;
  background-size: 0 0;
  background-repeat: no-repeat;
  border-radius: 50%;
  line-height: 80px;
  position: relative;
  text-align: center;
}

.page-div-left:hover .circle-left,
.page-div-right:hover .circle-right {
  background-size: cover;
}

.title-cell {
  display: table-cell;
  width: 100%;
  background-color: rgb(240,240,240);
  padding: 0 10px;
  vertical-align: middle;
}

.appear {
  opacity: 1;
}


/***------------------------------------------
      footer
------------------------------------------***/

#page-scroll {
  display: inline-block;
  position: fixed;
  right: 60px;
  bottom: 90px;
  z-index: 100003;
  text-align: center;
  -webkit-animation: slideInUp .8s;
  animation: slideInUp .8s;
}

#pagetop {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(179,171,180,.5);
  border-radius: 2px;
}

#pagebottom {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(179,171,180,.5);
  border-radius: 2px;
}

#pagetop a,
#pagebottom a {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: rgb(150,150,150);
  line-height: 40px;
}

@media screen and (max-width: 1090px) {
  #page-scroll {
    right: 8px;
  }
}

#page-scroll a:hover {
  color: rgb(150,150,150);
}

@-webkit-keyframes slideInUp {
  0% {
   opacity: 0;
   -webkit-transform: translateY(30px);
  }
  50% {
   opacity: 0;
   -webkit-transform: translateY(30px);
  }
  100% {
   opacity: 1;
   -webkit-transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
   opacity: 0;
   transform: translateY(30px);
  }
  50% {
   opacity: 0;
   transform: translateY(30px);
  }
  100% {
   opacity: 1;
   transform: translateY(0);
  }
}

.new {
  color: red;
  font-size: 11px;
}

.end {
  margin: 0 auto;
  width: 80%;
  max-width: 1300px;
  padding: 20px 5px;
  font: 12px/1.3 'Fanwood Text', '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', 'serif';
  text-align: center;
}

.end a:hover {
  color: rgb(150,150,150);
}

#ad1,
#ad2 {
  color: rgb(150,150,150);
  font-size: 11px;
}


/***------------------------------------------
      personal settings
------------------------------------------***/

/* headline */
.freehand {
  border: 3px solid rgb(230,230,230);
  border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
  padding: 1em;
  font-size: 15px;
  font-weight: bold;
}

.dogear {
  position: relative;
  padding: 1em;
  background-color: rgb(240,240,240);
  color: rgb(51,51,51);
  font-size: 15px;
  font-weight: bold;
}

.dogear:after {
  content: "";
  width: 0;
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: white white rgb(221,221,221) rgb(221,221,221); /* rgb(250,250,250) is the same color of the background */
  box-shadow: -1px 1px 2px rgba(0,0,0,.1);
  position: absolute;
  top: 0;
  right: 0;
}

/* highlight */
mark {
  background: linear-gradient(transparent 60%, yellow 60%);
  font-weight: bold;
}

/* 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%;
}

/* emoji */
.emoji {
  vertical-align: middle;
}

/* shadow for image */
.shadow-attachment {
  box-shadow: 6px 6px 6px rgba(0,0,0,.2); /* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}

/* 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;
}

/**/
#rufous-sandbox {
  max-width: initial;
}

.intense {
  cursor: pointer;
  cursor: -moz-zoom-in;
  cursor: -webkit-image-set(url('https://blog-imgs-106.fc2.com/v/a/n/vanillaice000/plus_cursor.png') 2x), auto;
}

figure > img {
  max-width: initial;
}

/* colorbox overlay */
#cboxOverlay,
#cboxWrapper,
#colorbox {
  z-index: 100005 !important;
}