


/* 改行 */
span {
  display: inline-block;
}
/* 文字スクロールCSS */
 .box-015{
  opacity: 0;
  transform: translateX(-100px);
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
 /* 文字スタイル */ 
h1 {
  font-size: 30px;
  margin-top: 15px;
  margin-bottom: 40px;
  line-height: 0px;

}
h4 {
  font-size: 30px;
  margin-top: 35px;
  margin-bottom: 40px;
  line-height: 0px;

}

h3 {
  font-size: 15px;
  margin-top: 1px;
  margin-left: 30px;
  margin-bottom: 1px;
  line-height: 23px;

}

h2 {
  padding: 1rem 2rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}
/* 枠 */
.box-015 {
  position: relative;
  max-width: 500px;
  margin: 19px auto;
  padding: 1em 2.5em 1em 1.5em;
  border-radius: 9px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  background-color: rgba(248, 0, 0, 0.8);/*背景色の不透明度を80%に指定*/
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(208, 202, 19, 0.64));
  color: #ffffff;
}

.box-015::before,
.box-015::after {
  position: absolute;
  content: '';
}

.box-015::before {
  top: -15px;
  right: 10px;
  height: 50px;
  width: 15px;
  border: 3px solid #999;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgb(0 0 0 / 30%);
  transform: rotate(10deg);
}

.box-015::after {
  top: 0;
  width: 10px;
  right: 20px;
  border: solid 5px #e0efff;
}

@media (min-width:768px) {
.box-015 {
  max-width: 1300px;

}  
