@charset "utf-8";
/* CSS Document */

/* LINE風の会話吹き出しを追加してみる
-------------------------------------------------------------------*/
.balloon_l,
.balloon_r {
  margin: 30px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /*縦位置を上揃え*/
  /*   align-items: center; */ /*縦位置を真ん中揃え*/
}
.balloon_r {
  justify-content: flex-end;
}
.faceicon img {
  width: 80px; /*任意のサイズ*/
  height: auto;
}
.balloon_r .faceicon {
  margin-left: 25px;
}
.balloon_l .faceicon {
  margin-right: 25px;
}
.balloon_r .faceicon {
  order: 2 !important;
}
.says {
  max-width: 600px; /*最大幅は任意*/
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 17px 13px 15px 18px;
  border-radius: 12px;
  background: #f1e6ff; /*色は任意*/
  box-sizing: border-box;
  margin: 0 !important;
  line-height: 1.5;
  /*   align-items: center; */
}
.says p {
  margin: 8px 0 0 !important;
}
.says p:first-child {
  margin-top: 0 !important;
}
.says:after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  /*   margin-top:-3px;  */
}
.balloon_l .says:after {
  left: -26px;
  border-right: 22px solid #f1e6ff;
}
.balloon_r .says:after {
  right: -26px;
  border-left: 22px solid #f1e6ff;
}
/* ########### 991px以下 ＞lg ########### */
@media (max-width: 991px) {
  .says {
    max-width: 60%; /*最大幅は任意*/
  }
}

.btn_tag {
  position: relative;
  display: inline-block;
  height: 64px;
  margin-left: 30px;
  padding: 1rem 2rem 1rem 3rem;
  color: #fff;
  background: #b60005;
  box-sizing: border-box;
  text-algin: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn_tag:before {
  position: absolute;
  top: 0;
  right: -30px;
  content: "";
  border-width: 32px 0 32px 30px;
  border-style: solid;
  border-color: transparent transparent transparent #b60005;
}
.btn-movie {
  position: relative;
}
.btn-movie::after {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

#qanda .card-body {
  background: #f0f8ff;
}
#qanda .card-header h5 a::after {
  color: #28a3ca;
}
