/* 引用デザイン */
blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #ceb070; /*引用ボックスの左線の色*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

/*blockquote:before{*/
/*    display: inline-block;*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    left: 15px;*/
/*    content: "\f10d";*/
/*    font-family: "Font Awesome 5 Free";*/
/*    color: #ceb070;*/
/*    font-size: 30px;*/
/*    line-height: 1;*/
/*    font-weight: 900;*/
/*}*/

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}

/* boxデザイン */
.box-emphasis {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #ceb070;/*文字色*/
    background: #FFF;
    border: solid 3px #ceb070;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.box-emphasis p {
    margin: 0; 
    padding: 0;
}

/* ribbonデザイン */
.ribbon-tag {
  display: inline-block;
  position: relative;
  padding: 15px 20px;
  font-size: 18px;/*フォントサイズ*/
  color: #FFF;/*フォントカラー*/
  background: #a6d3c8;/*リボンの色*/
}

.ribbon-tag:before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(149, 158, 155);/*折り返し部分*/
}

.ribbon-tag2 {
  display: inline-block;
  position: relative;
  height: 60px;/*高さ*/
  line-height: 60px;/*高さ*/
  text-align: center;
  padding: 0 40px 0 18px;/*文字の左右の余白*/
  font-size: 18px;/*文字サイズ*/
  background: #ffc668;/*背景色*/
  color: #FFF;/*文字色*/
  box-sizing: border-box;
}

.ribbon-tag2:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon-tag2:after {
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}

/* 吹き出し */
.balloon1 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #ebd9b2; /*#e0edff;*/
  border-radius: 15px;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ebd9b2;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}