﻿.fullwidth-balloon03 {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw); /* 親が1000px等でも画面いっぱいに */
  background: #f2c94c;           /* 帯の色（黄色） */
  padding: 64px 16px 72px; /* 帯の余白、左から上左右下（下は三角がある関係で少し厚め） */
  display: flex;
  align-items: center;        /* 縦中央 */
  justify-content: center;    /* 横中央 */
  text-align: center;
}

.fullwidth-balloon03 p {
  margin: 0;
  font-size: 50px;
  line-height: 1.35;
  font-weight: bold;
  color: #FFFFFF;
  font-weight: bold;
}

@media screen and (max-width: 1024px) {
  .fullwidth-balloon03 p {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .fullwidth-balloon03 {
    padding: 20px 12px 28px;
  }

  .fullwidth-balloon03 p {
    font-size: 24px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 375px) {
  .fullwidth-balloon03 p {
    font-size: 20px;
  }
}

/* ▼ 三角部分 */
.fullwidth-balloon03::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid  #f2c94c;
}
