@charset "utf-8";

/**
* Author: Vanillaice (Akira) - https://vanillaice000.blog.fc2.com/
* Website skin name: Juliette-Note
* The first edition: 2017.3.31
* 2017.4.17 - iPhoneでfixedされたinputが固定されないバグのApple修正に伴いhackを削除
* 2017.9.22 - SSL化に伴うURL正規化
* 2018.1.27 - 画像遅延読み込み導入(デフォルト設定グリッドページのみ), floatレイアウトからflexレイアウトに変更, リセットCSSを最小限に, html構造及びCSS装飾修正, その他微調整
* 2018.12,20 - CSS一部追加(Adsenseを掲載しやすく調整), 管理人コメントにプロフィールアイコン表示追加など
* 2019.7.31 - 管理画面経由で管理人名を装飾した際にテンプレートの返信ボタンレイアウトが崩れる件を修正, コメント欄管理人ハンドルネームにクラス名を追加(潜在的カスタマイズ), 記事部分の上下余白をpaddingからmarginに変更
* 019.11.2 - コメント主のリンク表示用JS及びデザインの変更
* 2019.12.15 - パーマリンク設定導入に伴うcanonical指定変更
* 2019.12.17 - パーマリンク設定導入に伴うページ送り変更
* 2020.4.5 - コメント返信のJS変更, jQueryを3.4.1にアップデート
* 2020.5.29 - ページ送りのJSを修正
* Latest update: 2020.6.4 - NEWマーク用JSを変更
*/

/***==========================================
      reset(do NOT change or delete)
==========================================***/

embed,iframe,img,table,textarea{max-width:100%}#fc2_text_ad,pre,table{word-break:break-all}dd,dl,dt,figure,li,ol,p,strong,summary,ul,var{margin:0;padding:0;border:0;outline:0;vertical-align:baseline;background:0 0}iframe{border:0}img{height:auto;line-height:0;vertical-align:bottom;font-size:0}ol,ul{list-style-type:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section{display:block}input,textarea{font-size:16px}pre,code{white-space:pre-wrap;font-family:Menlo,consolas,Courier}*{box-sizing:border-box}:focus{outline:0}.fc2_footer{margin:20px 0 0}#fc2_text_ad{margin:20px 0!important;letter-spacing:normal;line-height:1.4;font-size:11px}#fc2_text_ad a{color:#646464}#change_mobile{display:none}*::before,*::after{box-sizing:inherit;}#sh_fc2blogheadbar{z-index:4000!important}


/***==========================================
      blockquote
==========================================***/

blockquote {
  margin: 4em 15px 3em;
  border-left: 3px solid rgb(51,51,51);
  padding-left: 15px;
  position: relative;
  z-index: 1;
}

blockquote:before {
  content: "\f10d";
  color: rgb(206,206,206);
  line-height: 1em;
  position: absolute;
  left: -15px;
  top: -30px;
  z-index: -1;
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  font-size: 200%;
}


/***==========================================
      link
==========================================***/

a {
  text-decoration: none;
  color: rgb(235,159,138); /* 注)基本リンク色 */
  transition: .3s ease-in-out;
}

a:hover {
  color: rgb(51,51,51);
}


/***==========================================
      layout
==========================================***/

html {
  margin: 0;
  font-size: 62.5%;
}

/* lazyload */
.lazyloading{opacity:0}.lazyloaded{opacity:1;transition:opacity 1s}

body {
  margin: 0;
  background-color: white;
  color: rgb(51,51,51);
  word-wrap: break-word;
  font: 1.4rem/1.9 'Avenir', 'Century Gothic', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;/* 注)文字が細すぎると感じる方はこの一行削除(Mac Google Chromeのみ) 1/2 */
  -moz-osx-font-smoothing: grayscale;/* 注)文字が細すぎると感じる方はこの一行削除(Mac Firefoxのみ) 2/2 */
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

#bg-wrapper {
  background-color: white;
  position: relative;
  z-index: 3;
}

#main-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1200px;
  padding: 0 60px 80px;
}

#primary {
  flex: 1;
  max-width: calc(100% - 40px - 300px);
  margin-right: 40px;
  overflow: hidden;
  animation: slideInUp 1.5s;
}

#secondary {
  width: 300px;
  line-height: 1.8;
  font-size: 1.2rem;
  animation: slideInUp 1.8s;
}

.side-menu {
  margin-bottom: 40px;
  width: 300px;
  border: 1px solid rgb(238,234,228);
  padding: 30px 20px 20px;
  position: relative;
}

@media screen and (max-width: 880px) {
  #main-container {
    display: block;
    max-width: 860px;
  }
  #primary {
    max-width: 100%;
    margin: auto;
  }
  #secondary {
    margin-top: 40px;
    width: 100%;
    padding-top: 40px;
  }
  #reserve {
    display: flex;
    -ms-flex-wrap: wrap;/* fallback ie10 */
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .side-menu {
    border: 0;
    border-top: 1px solid rgb(238,234,228);
    padding: 30px 15px 20px;
  }
}
@media screen and (max-width: 800px) {
  #reserve {
    display: block;
  }
  .side-menu {
    margin: 0 auto 40px;
    width: 100%;
    max-width: 450px;
  }
}
@media screen and (max-width: 730px) {
  #main-container {
    padding: 0 0 80px;
  }
}


/***==========================================
      header
==========================================***/

/* 2 is grid page has header background */
/* animation */
@keyframes slideInDown{0%,50%{opacity:0;transform:translateY(-100px)}100%{opacity:1;transform:translateY(0)}}@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}@keyframes fadeIn{0%,50%{opacity:0}100%{opacity:1}}

#header-banner2 {
  width: 100%;
  background: url(https://blog-imgs-144-origin.fc2.com/a/r/i/arikitarin/meiza002.jpg) left bottom /cover no-repeat;/* 注)ヘッダー画像 */
  padding: 80px 0 100px;
  position: fixed;
  animation: fadeIn 1s;
}

@media screen and (max-width: 767px) {
  #header-banner2 {
    box-shadow:0px -8px 8px -1px rgba(0,0,0,.2) inset;
  }
}

#header-banner {
  padding: 50px 0;
}

#blog-name-container {
  margin: auto;
  max-width: 1200px;
  color: white;
  padding: 0 60px;
  text-align: center; 
}

@media screen and (max-width: 730px) {
  #blog-name-container {
    padding: 0 15px;
  }
}


#header-banner #blog-name-container {
  color: rgb(51,51,51);
}

/* 注)welcome不要の方ここから削除 */
#welcome {
  margin: auto;
  width: 90%;
  color: white;
  font: 40px/1.3 'Monsieur La Doulaise', cursive;
  text-align: center;
}

/* 注)ブログタイトルフォント関連 */
#blog-title2 {
  margin: auto;
  max-width: 850px;
  letter-spacing: 1px;
  font: bolder 2.6rem/1.4 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-indent: 1px;
  text-shadow: 2px 0px 2px rgba(85,85,85,.8);
  animation: slideInDown 1.5s;
}

#blog-title {
  margin: auto;
  max-width: 850px;
  letter-spacing: 1px;
  font: bolder 2.2rem/1.4 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-indent: 1px;
  animation: slideInDown 1s;
}

#blog-title2 a {
  color: white;/* 注)ブログタイトルリンク色グリッドページ */
}

#blog-title a {
  color: rgb(51,51,51);/* 注)ブログタイトルリンク色個別記事など */
}

/* 注)ブログタイトル下ブログ説明文 */
#site-description {
  margin: auto;
  max-width: 850px;
  line-height: 1.5;
  padding-top: 20px;
  font-size: 1.3rem;
  text-shadow: 2px 0px 2px rgba(85,85,85,.8);
}


/***==========================================
      breadcrumbs
==========================================***/

#breadcrumbs,
#breadcrumbs2 {
  margin: auto;
  max-width: 850px;
  line-height: 1.5;
  padding-top: 20px;
  font-size: 1.3rem;
}

#breadcrumbs2 {
  color: white;
  text-shadow: 2px 0px 2px rgba(85,85,85,.8);
}

#breadcrumbs li,
#breadcrumbs2 li {
  display: inline-block;
}

#breadcrumbs i,
#breadcrumbs2 i {
  margin: 0 .5em;
}


/***==========================================
      global navigation
==========================================***/

.navi-menu,
.navi-menu-upper {
  display: block;
  margin: auto;
  width: 100%;
  background-color: rgb(238,234,228);
  font: 11px/42px 'Vollkorn', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  text-shadow: 2px 0px 2px rgba(85,85,85,.2);
}

.navi-menu {
  margin-bottom: 40px;
  animation: fadeIn 2s;
}

.navi-menu-upper {
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: -100px;
  z-index: 100004;
  transition: all .3s;
}

.sticky {
  width: 100%;
  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);
  opacity: 1;
  top: 0;
}

.navi-menu-upper-adjust {
  top: 27px;
}

.navi-sizing {
  margin: auto;
  max-width: 800px;
  padding: 0 60px;
}

@media screen and (max-width: 880px) {
  .navi-sizing {
    max-width: 840px;
  } 
}

.navi-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.navi-list li a {
  color: rgb(51,51,51);
  letter-spacing: 2px;
}

.navi-list li:last-of-type {
  margin-right: 0;
}

.navi-list li:not(.expand-form) {
  position: relative;
  z-index: 3;
}

.navi-list .pc-hide {
  display: none;
}

.navi-menu-adjust .mobile-toggle {
  top: 27px;
}

/* site search */
.expand-form {
  width: 1.8em;
  height: 42px;
}

#search-form,
#search-form2 {
  margin: 0;
  width: 100%;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
}

#search-submit,
#search-submit2 {
  display: none;
}

#search-btn,
#search-btn2 {
  display: inline-block;
  background-color: transparent;
  border-radius: 50%;
  line-height: 42px;
  position: absolute;
  top: 0;
  right: 2px;
  text-align: center;
}

#search-btn i
#search-btn2 i {
  color: rgb(51,51,51);
}

#search-text,
#search-text2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  opacity: 0;
  width: 42px;
  height: 42px;
  border-radius: 22px;
  border: 0;
  background: rgb(250,250,250);
  color: rgb(51,51,51);
  outline: none;
  cursor: pointer;
  transition: .5s;
  -webkit-appearance: none;
}

#search-text:focus,
#search-text2:focus {
  width: 100%;
  cursor: text;
  opacity: 1;
  padding: 0 5px 0 10px;
}

#search-text::-webkit-input-placeholder,
#search-text2::-webkit-input-placeholder {
  color: rgb(51,51,51);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

#search-text::-moz-placeholder,
#search-text2::-moz-placeholder {
  color: rgb(51,51,51);
  font-family: 'Georgia', serif;
  font-size: 12px;
  font-style: italic;
}

.mobile-toggle {
  display: none;
}

/* navi breakpoint 2/2 */
@media screen and (max-width: 730px) {
  #main-container2 {
    padding: 0 0 80px;
  }
  .mobile-toggle {
    display: block;
    cursor: pointer;
    width: 100%;
    height: 42px;
    position: relative;
  }
  .mobile-toggle:before {
    content: "";
    display: block;
    margin-top: -8px;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background-color: rgb(51,51,51);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(45deg);
    transition: .3s ease-in-out;
  }
  .mobile-toggle:after {
    content: "";
    display: block;
    margin-top: -12px;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background-color: rgb(238,234,228);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(45deg);
    transition: .3s ease-in-out;
  }
  .open-navi:before {
    margin-top: -2px;
  }
  .open-navi:after {
    margin-top: 2px;
  }
  .navi-menu {
    display: none;
    height: 0;
    animation: none;
  }
  .navi-menu-upper {
    height: auto;
  }
  .navi-sizing {
    padding: 0;
  }
  .navi-menu-upper .sp-navi {
    display: none;
    width: 100%;
    height: auto;
    max-height: 400px;
    float: none;
    overflow-y: auto;
    padding: 20px 0 40px;
    text-align: center;
    -webkit-overflow-scrolling: touch;
  }
  .navi-menu-upper .navi-list {
    display: block;
    text-align: center;
  }
  .navi-menu-upper .navi-list li {
    margin: auto;
  }
  .navi-menu-upper .navi-list li {
    display: block;
    line-height: 1.3;
    padding: .8em;
  }
  .navi-menu-upper .navi-list li a {
    margin-right: -2px;
  }
  .navi-menu-upper .expand-form {
    margin: auto;
    width: 90%;
    max-width: 380px;
    height: auto;
  }
  #search-form2 {
    position: relative;
  }
  #search-btn2 {
    right: 0;
  }
  #search-text2 {
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid rgb(51,51,51);
    border-radius: 0;
    opacity: 1;
    position: static;
  }
  #search-text2:focus {
    padding: 0 1.5em 0 0;
  }
}


/***==========================================
      top page(grid)
==========================================***/

.grid-item {
  margin-bottom: 40px;
  position: relative;
}

.grid-item:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to left, rgba(238,234,228,0), rgba(238,234,228,.75), rgba(238,234,228,0));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

/* image format */
.inner-image-parent {
  box-shadow: 0px 3px 15px rgba(0,0,0,.1);
  overflow: hidden;
  position: relative;
}

.inner-image-parent:before {
  content: "";
  display: block;
  padding-top: 52%;
}

.grid-a,
.grid-a:hover {
  color: rgba(51,51,51,.4);
}

.inner-image-parent img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* mask for no-image */
.no-image-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(250,250,250,.8);
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  text-transform: uppercase;
}

/* grid content */
.grid-context {
  padding: 50px 0 20px;
  position: relative;
  word-break: break-all;
  text-align: justify;
}

@media screen and (max-width: 730px) {
  .grid-context {
    padding: 50px 30px 20px;
  }
}
@media screen and (max-width: 540px) {
  .grid-context {
    padding: 40px 15px 20px;
  }
}

.grid-context a {
  color: rgb(150,150,150);
}

/* time */
.grid-datetime {
  display: flex;
  margin: auto;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: rgb(235,159,138);
  border-radius: 50%;
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,.3);
  color: white;
  line-height: 1.3;
  position: absolute;
  right: 0;
  left: 0;
  top: -40px;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 540px) {
  .grid-datetime {
    width: 70px;
    height: 70px;
  }
}

.topentry-month,
.topentry-year {
  font-size: 12px;
}

.topentry-day {
  font-size: 20px;
  font-weight: bold;
}

.grid-title {
  margin: 0 auto 10px;
  line-height: 1.4;
  font-size: 18px;
  font-weight: bolder;
  text-align: center;
}

.grid-category {
  font-size: 1.2rem;
  text-align: center;
}

.grid-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-height: calc(1.4rem * 1.9 * 4);
  margin: 20px 0 40px;
  overflow: hidden;
  word-break: break-all;
  text-align: justify;
}

.grid-footer {
  text-align: right;
}

.grid-footer a {
  color: rgb(235,159,138);
}

.grid-comment,
.sns-ul {
  display: inline-block;
}

.sns-ul {
  margin-left: 2em;
}

.sns-ul li {
  display: inline-block;
  margin-left: .5em;
}

.sns-ul li:first-of-type {
  margin-left: 0;
}

.grid-comment i {
  margin-right: .6em;
}

.sns-ul li a {
  padding-left: .6em;
}

/* top page and individual SNS share */
#entry-footer {
  padding-bottom: 20px;
  text-align: right;
}

/* SNS brand color */
.c-facebook:hover {
  color: rgb(59,89,152);
}

.c-twitter:hover {
  color: rgb(73,171,242);
}

.c-pinterest:hover {
  color: rgb(206,15,25);
}

.c-hatena:hover {
  color: rgb(61,142,216);
}

.c-go-to-page:hover,
.c-pencil:hover {
  color: rgb(173,152,149);
}


/***==========================================
      individual article
==========================================***/

.main-body {
  margin-bottom: 60px;
  position: relative;
}

.main-body:before {
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to left, rgba(238,234,228,0), rgba(238,234,228,.75), rgba(238,234,228,0));
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

@media screen and (max-width: 730px) {
  .main-body {
    padding: 0 30px;
  }
}
@media screen and (max-width: 540px) {
  .main-body {
    padding: 0 15px;
  }
}

#entry-header {
  text-align: center;
}

#entry-category {
  font-size: 12px;
}

#entry-title {
  margin: auto;
  line-height: 1.4;
  padding: 12px 0;
  font-size: 18px;
}

#entry-datetime,
#entry-comment-number  {
  display: inline-block;
  font-size: 12px;
}

#entry-comment-number span {
  padding: 0 1em;
}

.contents {
  padding: 20px 0;
}

#inner-contents {
  position: relative;
  z-index: 1;
  margin: 20px 0;
}

/* back to default */
#inner-contents p:not(.relate-title) {
  margin: 1.9em 0;
}

#inner-contents ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}

#inner-contents ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}

/* heading */
#inner-contents h2 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1.2em;
}
#inner-contents h3 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1.1em;
}
#inner-contents h4 {
  margin: 3em auto 2em;
  line-height: 1.5;
  font-size: 1em;
}

.height-adjust {
  padding-top: 62px;
  margin-top: -42px;
}

/* tag on article */
.entry-tag {
  margin-top: 20px;
  font-size: 1.2rem;
}

.entry-tag a {
  display: inline-block;
  margin: 0 3px 3px 0;
  border: 1px solid rgb(238,234,228);
  padding: .1em .4em;
}

.entry-tag a:hover {
  background-color: rgb(235,159,138);
  border-color: rgb(235,159,138);
  color: white;
}




/***==========================================
      posted comment
==========================================***/

.another-title {
  margin: auto;
  padding-bottom: 20px;
  font: 1.6rem/1.4 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-align: center;
}

.comment-number {
  display: none;
}

.comment-number0 {
  display: block;
  color: rgb(200,200,200);
  font-style: italic;
  text-align: center;
}

.border-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-weight: bold;
  font-size: 1.4rem;
}

.user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0 15px 0 0;
  border-radius: 50%;
  background: rgb(207,207,207);
  color: white;
  font-size: 1.8rem;
}

.user-icon:before {
  content: "\f007";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 5 Free';
}

.author-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

.useranchor {
  display: inline-block;
}

.useranchor::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .6em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='none' stroke='rgb(235,159,138)' stroke-miterlimit='10' stroke-width='4' d='M30 62h32V2H2v32' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3Cpath fill='none' stroke='rgb(235,159,138)' stroke-miterlimit='10' stroke-width='4' d='M26 56V38H8m18 0L2 62' stroke-linejoin='round' stroke-linecap='round'%3E%3C/path%3E%3C/svg%3E") center center /cover no-repeat;
  vertical-align: -.13em;
}

.visitor-name {
  font-size: 14px;
}

.comment-title {
  margin-bottom: 5px;
}

.comment-body {
  padding: 10px 0;
  font-size: 1.3rem;
}

.comment-info {
  text-align: right;
}


/***==========================================
      comment form
==========================================***/

#comment_form {
  padding: 40px 0 20px;
}

#comment_form label {
  display: block;
  padding-bottom: 5px;
  font-size: 1.2rem;/* 注)コメント投稿フォームフォント大きさ */
}

#comment_form input {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  background: rgb(250,250,250);
  border-radius: 2px;
  border: 1px solid rgb(238,234,228);/* 注)コメントフォーム各項目ボーダー色 */
  outline: none;
  filter: none;
  -webkit-appearance: none;
}

#comment_form input:focus,
#comment:focus {
  background-color: white;
  border: 1px solid rgb(179,179,179);/* 注)コメントフォーム各項目(含 テキストエリア)フォーカス時ボーダー色 */
}

#comment {
  width: 100%;
  min-height: 200px;
  margin-bottom: 10px;
  padding: 12px;
  background: rgb(250,250,250);
  border-radius: 2px;
  border: 1px solid rgb(238,234,228);/* 注コメントフォームテキストエリアボーダー色 */
  line-height: 1.5;
  outline: none;
  -webkit-appearance: none;
}

#comment_form input:-webkit-autofill {
  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: .1em;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  text-transform: uppercase;
}

#comment_form input::-moz-placeholder,
#comment_form textarea::-moz-placeholder {
  letter-spacing: .1em;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  text-transform: uppercase;
}

#trackback {
  padding-top: 42px;
  margin-top: -42px;
  position: relative;
}

/* checkbox */
#no-p input:focus {
  outline: none;
}

#no-p input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}
#no-p input[type=checkbox] + label {
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
  line-height: 1.5px;
  position: relative;
  left: 0;
}
 
@media (min-width: 1px) {
  #no-p input[type=checkbox] {
    display: none;
    margin: 0;
  }

  #no-p input[type=checkbox] + label {
    padding: 2px 0 0 24px;
  }

  #no-p input[type=checkbox] + label:before {
    content: "";
    display: block;
    margin-top: -10px;
    width: 18px;
    height: 18px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
  }

  #no-p input[type=checkbox] + label:before {
    border: 1px solid rgb(220,220,220);/* 注)secretコメントチェックボックスボーダー色 */
    border-radius: 2px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
  }

  #no-p input[type=radio]:checked + label:after {
    margin-top: -4px;
    width: 8px;
    height: 8px;
    background: rgb(51,51,51);/* 注)secretコメントチェックマーク色(1/3) */
    border-radius: 8px;
    top: 2px;
    left: 5px;
  }

  #no-p input[type=checkbox]:checked + label:after {
    margin-top: -8px;
    width: 16px;
    height: 8px;
    border-bottom: 3px solid rgb(51,51,51);/* 注)secretコメントチェックマーク色(2/3) */
    border-left: 3px solid rgb(51,51,51);/* 注)secretコメントチェックマーク色(3/3) */
    left: 3px;
    transform: rotate(-45deg);
  }
}

/* send and delete button */
#sendbtn,
#delbtn {
  margin-top: 20px;
  margin-right: 20px;
  width: 156px;
  height: 30px;
  background-color: rgb(238,234,228); /* 注)send, deleteボタン背景色 */
  border: none;
  border-radius: 2px;
  box-shadow: 2px 2px 4px rgba(0,0,0,.1);
  color: rgb(51,51,51); /* 注)send, deleteボタン文字色 */
  cursor: pointer;
  padding: 4px 0 5px;
  font-family: 'Playfair Display', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  font-size: 1.4rem; /* 注)コメントsend/ deleteボタンフォント大きさ */
  text-align: center;
  text-transform: uppercase;
  transition: .3s ease-in-out;
}

#sendbtn:hover,
#delbtn:hover {
  background-color: rgb(235,159,138); /* 注)send, deleteボタンホバー時背景色 */
  color: white;
}

.comment-info {
  text-align: right;
}

.comment-info li {
  display: inline-block;
}

.comment-info li:not(:last-of-type)::after {
  content: "|";
  margin: 0 .4em;
}


/***==========================================
      trackback
==========================================***/

.op,
#for-trackback-word {
  display: block;
  width: 100%;
  max-width: 600px;
}

.op {
  margin: 0 auto 10px;
  border: 1px solid rgb(220,220,220);/* 注)トラックバックボーダー色 */
  border-radius: 0;
  padding: .5em;
  outline: none;
  font-size: 1.3rem;/* 注)トラックバックフォント大きさ */
}

#for-trackback-word {
  margin: auto;
}

.op:focus {
  border: 1px solid rgb(179,179,179);/* 注)トラックバックフォーカス時ボーダー色 */
}


/***==========================================
      related post, trackback list
==========================================***/

/* with thumbnail */
#fc2relate_entry_thumbnail_area {
  margin: 80px auto 0;
  background-color: transparent;
  border: 1px solid rgb(238,234,228);
  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: 1.6rem/1.4 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-align: center;
}

#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: 1000px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 880px) {
  #fc2relate_entry_thumbnail_area .relate_dd .relate_ul li {
    width: 50%;
    float: left;
  }
}

@media screen and (max-width: 600px) {
  #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: 1.2rem;
}

#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="//static.fc2.com/image/sh_design/no_image/no_image_144x144.png"] {
  visibility: hidden;
}

.related-overlay {
  position: relative;
}

.related-overlay:before {
  content: "";
  width: 80px;
  height: 80px;
  background: url(https://blog-imgs-102-origin.fc2.com/v/a/n/vanillaice000/Julietnoimage.jpg) center center /cover no-repeat;/* 注)No image 関連記事サムネイル画像 */
  border-radius: 3px;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}

.related-overlay:after {
  content: "No image";
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgba(250,250,250,.8);/* 注)No image 関連記事サムネイル上マスク */
  color: rgba(51,51,51,.4);
  line-height: 80px;
  position: absolute;
  z-index: 3;
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
}

#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(238,234,228);/* 注)関連記事・トラックバック一覧背景色 */
  border-radius: 2px;
  letter-spacing: normal;
  padding: 10px;
}

.relate_dt,
.tb_dt {
  padding: 3px;
  font-weight: bold;
}

.date {
  padding-top: 10px;
}

.tb_ul {
  padding: 10px 0;
}

.relate_dl a,
.tb_dl a {
  color: rgb(165,164,179)
}

.relate_dl a:hover,
.tb_dl a:hover {
  text-decoration: underline;
}


/***==========================================
      index (title list), search page
==========================================***/

.list-title {
  display: inline-block;
  margin: auto;
  line-height: 1.5;
  font-size: 1.5rem;/* 注)全記事リスト記事タイトルフォント大きさ */
}

.list-title a {
  text-decoration: none;
}

.list-entry {
  overflow: hidden;
  padding: 5px 0;
}

.list-entry-date,
.list-entry-category {
  font-size: 1.2rem;
  text-align: right;
}

/* only for search page */
.list-a {
  margin-bottom: 5px;
  margin-left: 10px;
  width: 72px;
  height: 72px;
  color: rgba(51,51,51,.7);
  float: right;
}

.thumbnails {
  display: inline-block;
  width: 72px;
  height: 72px;
  overflow: hidden;
  position: relative;
}

.search-noimage {
  width: 100%;
  height: 100%;
  background: url(https://blog-imgs-102-origin.fc2.com/v/a/n/vanillaice000/Julietnoimage.jpg) center center /cover no-repeat;/* 注)No image画像 検索結果 */
}

.search-noimage:before {
  content: "No image";
  width: 100%;
  height: 100%;
  background: rgba(250,250,250,.8);/* 注)検索結果ページNo image上マスク背景色 white 不透明度0.8 */
  position: absolute;
  top: 0;
  left: 0;
  font: 10px/72px 'Playfair Display', serif;
  text-align: center;
}


/***==========================================
      side menu(secondary)
==========================================***/

.sidebar-style a {
  color: rgb(120,120,120);
}

.side-menu h4 {
  display: inline-block;
  margin: auto;
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  font: 1.4rem/1.4 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-align: center;
}

.side-menu h4 span {
  background-color: white;
  padding: 0 1em;
}

.side-menu ul {
  margin-left: 1.3em;
  list-style-type: circle;
}

.side-menu ol {
  margin-left: 1.3em;
  list-style-type: decimal;
}


/***==========================================
      official plug-in
==========================================***/

/* calendar */
.calender {
  margin: auto;
  table-layout: fixed;
  width: 100%;
  max-width: 320px;
  text-align: center;
  font-size: 12px;
  border-spacing: 0;
  border-collapse: collapse;
}

.calender caption {
  margin-bottom: 10px;
  width: 100%;
}

.calender caption a {
  display: inline-block;
  width: 20%;
}

#sun {
  color: rgb(189,30,30);
}

#sat {
  color: rgb(49,70,187);
}

.calender td {
  vertical-align: top;
  height: 40px;
  padding: 2px 2px 0 0;
  text-align: right;
  border: 1px solid rgb(51,51,51);
}

.calender td a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
  position: relative;
}

.calender td a:after {
  content: "\f00c";
  display: inline-block;
  width: 35px;
  right: 0;
  color: rgb(235,159,138);/* 注)公式プラグインカレンダーチェックマーク色 */
  font-weight: 700;
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  top: 15px;
  text-align: center;
}

.calender td a:hover {
  text-decoration: none;
}

/* profile */
 .plugin-myimage {
  text-align: center !important;
  margin-bottom: 10px;
}

/* mail form */
.sidebar-style form {
  display: block;
  margin: auto;
  max-width: 260px;
}

.plugin-mail input:not([type="submit"]),
.plugin-mail textarea,
.plugin-search input:not([type="submit"]),
.plugin-serach textarea {
  display: inline-block;
  width: 100% !important;
  padding: .5em;
  border-radius: 2px;
  border: 1px solid rgb(207,207,207);
  background: white;
  outline: none;
  -webkit-appearance: none;
}

.sidebar-style input[type="submit"] {
  display: block;
  margin: 0 0 0 auto;
  border-radius: 2px;
  border: 0;
  background: rgb(238,234,228);
  color: rgb(51,51,51);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

/* search */
.plugin-search {
  margin: auto;
  width: 100%;
}

.plugin-search input {
  margin-bottom: 8px;
}

/* tag */
.plugin-tag a {
  display: inline-block;
  margin: 2px 2px 2px 0;
  border: 1px solid rgb(238,234,228);/* 注)プラグインタグ ボーダー色 */
  padding: .3em 1em;
}

.plugin-tag a:hover {
  background-color: rgb(235,159,138);/* 注)プラグインタグ ホバー時背景色 */
  border-color: rgb(235,159,138);/* 注)プラグインタグ ホバー時ボーダー色 */
  color: white;
  text-decoration: none;
}


/***==========================================
      pager
==========================================***/

/* general */
#pager {
  margin: 70px auto 40px;
  font-family: 'Times New Roman', serif;
  font-size: 11px;
  text-align: center;
}

#pager-list {
  display: inline-block;
}

.pager-item {
  display: inline-block;
}

.pager-item-anchor,
#current,
.pager-item-anchor-general {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 2px 4px;
  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;
  color: rgb(51,51,51);
}

#current {
  background: rgb(245,245,245);/* 注)汎用ページ送り現在ページ背景色 */
}

.pager-item-anchor-general {
  background: rgb(238,234,228);
}

.pager-item-anchor:hover,
.pager-item-anchor-general:hover {
  background: rgb(235,159,138);/* 注)汎用ページ送りマウスホバー時背景色 */
  color: white;
}

/* article, titlelist */
.posted-pager,
.titlelist-pager {
  display: flex;
  margin: 0 auto 40px;
  width: 100%;
  font-size: 12px;/* 注)個別記事ページ送りフォント大きさ */
}

.prev-entry,
.next-entry {
  width: 50%;
}

.next-entry {
  text-align: right;
}

.prev-a,
.next-a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(235,159,138);
  padding: 10px 0;
}

.prev-a .preventry-text,
.next-a .nextentry-text {
  color: rgb(51,51,51);
  transition: .3s ease-in-out;
}

.preventry-text,
.nextentry-text,
.t-preventry-text,
.t-nextentry-text {
  letter-spacing: .1em;
  padding: 0 10px;
  font-family: 'Vollkorn', YuGothic, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  text-transform: uppercase;
}

.preventry-text i,
.t-preventry-text i {
  margin-right: 1em;
}

.nextentry-text i,
.t-nextentry-text i {
  margin-left: 1em;
}

.preventry-title,
.nextentry-title,
.t-preventry-text,
.t-nextentry-text {
  padding: 0 10px;
}

.preventry-title,
.t-preventry-text {
  box-shadow: 1px 0 0 0 rgb(238,234,228);
}

.nextentry-title,
.t-nextentry-text {
  box-shadow: 1px 0 0 0 rgb(238,234,228) inset;
}

.prev-a:hover,
.next-a:hover {
  background-color: rgb(235,159,138);/* 注)個別記事ページ送りホバー時背景色 */
  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: 30vh;
  font-size: 12px;/* 注)サイドページ送りフォント大きさ */
  transition: opacity .7s ease;
  pointer-events: none;
}

.side-pager-left {
  left: -157px;
}

.side-pager-right {
  right: -157px;
}

.page-div-right,
.page-div-left {
  display: block;
  margin: 0;
  width: 180px;
  height: 80px;
}

.side-pager-right a,
.side-pager-left a {
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(51,51,51);
  word-break: break-all;
  transition: none;
}

.page-table {
  display: table;
  width: 100%;
  height: 100%;
}

.circle-cell {
  display: table-cell;
  width: 80px;
  height: 80px;
  vertical-align: top;
}

.circle {
  display: block;
  width: 80px;
  height: 80px;
  background-color: rgba(235,229,220,.7);/* 注)個別記事ページサイドページ送りnext, prev背景色 */
  border-radius: 50%;
  line-height: 80px;
  text-align: center;
}

.title-cell {
  display: table-cell;
  width: 100%;
  background-color: white;
  padding: 0 10px;
  vertical-align: middle;
}

.title-cell span {
  display: block;
  width: 100%;
  max-height: 80px;
  line-height: 1.4;
  overflow: hidden;
}

.appear {
  opacity: 1;
  pointer-events: auto;
}


/***==========================================
      footer
==========================================***/

/* animation */
@keyframes slideInUp{0%,50%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

#page-scroll {
  display: inline-block;
  position: fixed;
  right: 60px;
  bottom: 90px;
  z-index: 100003;
  font-size: 11px;
  text-align: center;
  animation: slideInUp .8s;
}

#pagetop,
#pagemiddle,
#pagebottom {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(235,159,138,.5);
  border-radius: 50%;
  line-height: 39px;
  text-shadow: none;
}

#pagemiddle {
  display: none;
}

#page-scroll a {
  display: block;
  width: 100%;
  height: 100%;
}

#page-scroll a:hover {
  color: rgb(235,159,138);
}

@media screen and (max-width: 880px) {
  #page-scroll {
    right: 8px;
  }
  #pagemiddle {
    display: block;
  }
}

.new {
  display: inline-block;
  margin-left: .3em;
  color: red;
  font-weight: normal;
  font-size: 1.1rem;
}

#footer {
  width: 100%;
  background-color: rgb(238,234,228);
  overflow: hidden;
  padding: 50px 10px 30px;
  font-family: 'Playfair display', 'Hiragino Mincho ProN', YuMincho, 'MS PMincho', 'MS Mincho', serif;
  text-align: center;
}

/* sns on footer */
#footer-sns-ul {
  margin: auto;
}

#footer-sns-ul li {
  display: inline-block;
  margin: 3px 7px;
}

#footer-sns-ul li a {
  display: block;
  width: 35px;
  height: 35px;
  background-color: rgb(235,159,138);/* 注)フッターSNS背景色 */
  border-radius: 50%;
  color: white;/* 注)フッターSNSテキスト色 Night Rider */
  line-height: 35px;
}

.hatena {
  font-weight: 700;
  font-family: 'Verdana', sans-serif;
}

/* brand color */
#footer-c-facebook:hover {
  background: rgb(59,89,152);
}

#footer-c-twitter:hover {
  background: rgb(73,171,242);
}

#footer-c-instagram:hover {
  background: rgb(81,127,164);
}

#footer-c-pinterest:hover {
  background: rgb(206,15,25);
}

#footer-c-youtube:hover {
  background-color: rgb(204,24,30);
}

#footer-object {
  color: rgb(150,150,150);
  line-height: 1.3;
  padding-top: 20px;
}

.foot,
#copyright {
  display: block;
  font-size: 1.2rem;
}

#ad1,
#ad2 {
  font-size: 11px;
}


/***==========================================
      personal settings
==========================================***/

/* headline */
.freehand {
  border-radius: 3em .7em 2em .7em/.7em 2em .7em 3em;
  padding: .5em;
  border: 3px solid rgb(230,230,230);
}

.dogear {
  position: relative;
  padding: .5em .75em;
  background-color: rgb(240,240,240);
  color: rgb(51,51,51);
}

.dogear:after {
  content: "";
  width: 0;
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: -1px 1px 2px rgba(0,0,0,.1);
  border-width: 0 16px 16px 0;
  border-style: solid;
  border-color: white white rgb(221,221,221) rgb(221,221,221);/* white is the same color of the background */
}

.curl {
  position: relative;
  padding: .5em .75em;
  background-color: rgb(240,240,240);
}

.curl:before,
.curl:after {
  content: "";
  position: absolute;
  bottom: 8px;
  z-index: -1;
  width: 30%;
  height: 50%;
  box-shadow: 0 10px 15px rgba(0,0,0,.2);
}

.curl:before {
  left: .3em;
  transform: rotate(-3deg);
}

.curl:after {
  right: .3em;
  transform: rotate(3deg);
}

/* 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);/* 注)記事内画像に自動ドロップシャドウ 不要な方は削除 */
}


/*---------------
 ◆ ふきだし ◆
---------------*/

/*=== 共通設定 ===*/

/*全体の上下左右の余白*/
.fuki {margin: 20px 0 ;}
/*テキスト回り込み解除*/
.fuki:after,.fuki:before {clear: both; content: ""; display: block;}

/*アイコン画像の設定*/
.fuki figure {margin: 0; display: block;}
.fuki figure img {
  width: 100%; 
  height: 100%; 
  border-radius: 50%;
  margin: 0;
  vertical-align: middle;
  border: 2px solid #ffffff; /*★アイコン画像の枠線の太さと色の調整*/ 
}
/*アイコン画像の設定*/
.fuki-img-left {margin-left: 10px; margin-top: 1px; float: left;}
.fuki-img-right {margin-right: 10px margin-top: 1px; float: right;}
.fuki-img-left,.fuki-img-right {width: 90px; height: 90px;}

/*アイコン画像の名前*/
.fuki-img-name {padding: 0; margin-top: 3px; font-size: 10px; line-height: 1.2em; font-weight: 400; text-align: center; display: block;}


/*=== 会話風ふきだし ===*/
.chat-text-left,.chat-text-right {
  position: relative;
  margin: 0 100px 16px;
  padding: 16px;
  box-shadow: 1px 1px 5px #aaaaaa90; /*★ふきだしの影*/
  border-radius: 5px; /*★ふきだしの丸さ調整*/
}
.chat-text-left p,.chat-text-right p {
  margin:0 !important;
  font-size: 16px; 
  color: #; /*★ふきだし内テキスト文字色*/
}

/*左からのふきだし*/
.chat-text-left {
  background-color: #ffffff; /*★①左ふきだし背景色*/
  border: 1px solid #aaa; /*★②左ふきだし枠線の色*/
}
/*左からのふきだしの三角部分*/
.chat-text-left:after {
  position: absolute; 
  top: 16px; left: -22px; content: '';
  border: 12px solid transparent;
  border-right: 12px solid #ffffff; /*★①左から三角ふきだし背景色*/
}
.chat-text-left:before { 
  position: absolute; 
  top: 16px; left: -24px; content: '';
  border: 12px solid transparent ;
  border-right: 12px solid #aaa; /*★②左ふきだし枠線の色*/
}

/*右からのふきだし*/
.chat-text-right { 
  background-color: #ffffff; /*★③右ふきだし背景色*/
  border: 1px solid #aaa; /*★④右ふきだし枠線の色*/
} 
/*右からのふきだしの三角部分*/
.chat-text-right:after {
  position: absolute; 
  top: 16px; right: -22px; content: '';
  border: 12px solid transparent;
  border-left: 12px solid #ffffff; /*③右ふきだし背景色*/
}
.chat-text-right:before {
  position: absolute; 
  top: 16px; right: -24px; content: '';
  border: 12px solid transparent;
  border-left: 12px solid #aaa; /*★④右ふきだし枠線の色*/
}

/*=== もくもくふきだし ===*/
.mkmk-text-left,.mkmk-text-right{ 
  position: relative;
  margin: 0 100px 16px; 
  padding: 16px;
  box-shadow: 1px 1px 5px #aaaaaa90; /*★もくもくの影*/
  border-radius: 30px; /*★もくもくの丸さ調整*/
}
.mkmk-text-left p,.mkmk-text-right p {
  margin: 0 !important;
  font-size: 16px; 
  color: #555; /*★もくもく内テキスト文字色*/
}
/*左からのもくもく*/ 
.mkmk-text-left {
  background-color: #ffaadd; /*★⑤左もくもく背景色*/
  border: 1px solid #ff66aa; /*★⑥左もくもく枠線の色*/
}
/*左もくもくの丸い部分*/
.mkmk-text-left:before {
  position: absolute; 
  content: ''; top: 16px; left: -16px;
  border-radius: 50%; width: 12px; height: 12px;
  background-color: #ffaadd; /*★⑤左もくもく背景色*/
  border: 1px solid #ff6699; /*★⑥左もくもく枠線の色*/
}
.mkmk-text-left:after {
  position: absolute; 
  content: ''; top: 26px; left: -26px;
  border-radius: 50%; width: 8px; height: 8px;
  background-color: #ffaadd; /*★⑤左もくもく背景色*/
  border: 1px solid #ff6699; /*★⑥左もくもく枠線の色*/
}

/*右からのもくもく*/
.mkmk-text-right { 
  background-color: #88ddff; /*★⑦右もくもく背景色*/
  border: 1px solid #55aaff; /*★⑧右もくもく枠線の色*/
}
/*右からのもくもくの丸い部分*/
.mkmk-text-right:before {
  position: absolute; 
  content: ''; top: 16px; right: -16px;
  border-radius: 50%; width: 12px; height: 12px;
  background-color: #88ddff; /*★⑦右もくもく背景色*/
  border: 1px solid #55aaff; /*★⑧右もくもく枠線の色*/
}
.mkmk-text-right:after {
  position: absolute; 
  content: ''; top: 26px; right: -26px;
  border-radius: 50%; width: 8px; height: 8px;
  background-color: #88ddff; /*★⑦右もくもく背景色*/
  border: 1px solid #55aaff; /*★⑧右もくもく枠線の色*/
}

/*=== レスポンシブ設定 ===*/
@media (max-width: 767px){
/*スマホ表示の時は横幅いっぱいに広げる*/
.chat-text-left,.mkmk-text-left {margin-left: 90px; margin-right: 0;}
.chat-text-right,.mkmk-text-right {margin-left: 0; margin-right: 90px;}
/*スマホ表示の時はふきだし画像サイズを小さくする*/  
.fuki-img-left,.fuki-img-right {width: 80px; height: 80px;}
}

/*-- ふきだしここまで --
------------------------*/