@charset "UTF-8";
/*reset
-=========-=========-=========-=========-=========*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, 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;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav, ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*変数・関数
-=========-=========-=========-=========-=========*/
/*レイアウト関連
-=========-=========-====*/
/* --- メディアクエリ --- */
/* 追加 */
/* --- カラー --- */
/* 背景色 */
/* メインカラー */
/* アクセントカラー */
/* グレートーン */
/* --- レイアウト --- */
/* スペース・余白 */
/*section間のbottom、PC以上*/
/*lyoutの上下padding*/
/*innerの左右padding*/
/* スペース・余白（レスポンシブ用可変） */
/*横幅960px:80px、375px:31.2…px*/
/*横幅960px:40px、375px:15.6…px*/
/*横幅960px:32px、375px:12.49…px*/
/*横幅960px:24px、375px:9.375px*/
/*フォント関連
-=========-=========-====*/
/* font-size */
/*80px*/
/*64px*/
/*48px*/
/*40px*/
/*32px*/
/*28px*/
/*24px*/
/*20px*/
/*18px*/
/*16px*/
/*14px*/
/*12px*/
/* font-weight */
/* line-height */
/*チャット風UI
-=========-=========-=========-=========-=========*/
body {
  background: skyblue;
}

.ly_messages_inner {
  max-width: 960px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 16px;
}

.bl_messages li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_messages li + li {
  margin-top: 32px;
}

.el_message_pic {
  width: 80px;
  text-align: center;
}

.el_message_pic img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.el_message_txt {
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px;
  line-height: 1.5em;
  max-width: 60%;
  position: relative;
}

.el_message_txt::before {
  content: '';
  width: 0;
  height: 0;
  border: 8px solid transparent;
  position: absolute;
}

.bl_messages_left .el_message_txt::before {
  top: 12px;
  left: -16px;
  border-right-color: #fff;
}

.bl_messages_right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.bl_messages_right .el_message_txt::before {
  top: 12px;
  right: -16px;
  border-left-color: #fff;
}

/*ハートアニメーションアイコン
-=========-=========-=========-=========-=========*/
.hp_heart {
  font-size: 40px;
  color: #cdcdcd;
  margin: 4px 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.hp_like {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -webkit-transition: background  .5s;
  transition: background  .5s;
}

.hp_like:hover {
  background: #f5f5f5;
}

.hp_like [type="checkbox"] {
  display: none;
}

.hp_like [type="checkbox"]:checked ~ .hp_heart {
  -webkit-animation-name: heart;
          animation-name: heart;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes heart {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    color: #eb006d;
  }
}

@keyframes heart {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    color: #eb006d;
  }
}

.hp_ripple {
  position: absolute;
  width: 85px;
  height: 85px;
  background-color: #eb006d;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.hp_like [type="checkbox"]:checked ~ .hp_ripple {
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: .6s;
          animation-duration: .6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
/*# sourceMappingURL=bubble.css.map */