
    .fukidashi-02-04 {
      position: relative;
      width: fit-content;
    }
    .fukidashi-02-04 > .text {
      position: relative;
      padding: 12px 16px;
      border-radius: 4px;
      background-color: #fff3d1;
    }
    .fukidashi-02-04 > .text::before {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 15px;
      height: 15px;
      transform: rotate(135deg);
      box-sizing: border-box;
      background-color: #fff3d1;
    }
    .fukidashi-02-04 > .ornament {
      position: absolute;
      top: 0;
      width: 100%;
      height: 100%;
    }
    .fukidashi-02-04 > .ornament::before {
      content: "";
      position: absolute;
      top: 0;
      left: -150px;
      width: 36px;
      height: 16px;
      transform: rotate(-45deg);
      box-sizing: border-box;
      background-color: #ff57b1;
      mix-blend-mode: multiply; /* 乗算 */
    }
    .fukidashi-02-04 > .ornament::after {
      content: "";
      position: absolute;
      top: calc(100% - 15px);
      right: 130px;
      width: 36px;
      height: 16px;
      transform: rotate(-45deg);
      box-sizing: border-box;
      background-color: #64d1ff;
      mix-blend-mode: multiply; /* 乗算 */
    }




    .fukidashi-02-03 {
      position: relative;
      display: grid;
      place-items: center;
      width: 330px;
      height: 120px;
      border: 2px solid #333333;
      border-radius: 50%;
    }
    .fukidashi-02-03::before {
      content: "";
      position: absolute;
      bottom: 15px;
      left: 70px;
      width: 15px;
      height: 15px;
      transform: rotate(135deg);
      box-sizing: border-box;
      background-color: #ffffff;
    }
    .fukidashi-02-03::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 180px;
      width: 60px;
      height: 2px;
      transform: rotate(50deg);
      box-sizing: border-box;
      background-color: #333333;
    }
    .fukidashi-02-03 > .ornament {
      position: absolute;
      width: 100%;
      height: 100%;
      transform: translateX(3px) translateY(3px); /* 位置をややズラす */
      border-radius: 50%;
      background-color: #ffeecc;
      pointer-events: none; /* クリック不可にする（下のテキストに触れるように） */
      mix-blend-mode: multiply; /* 乗算 */
    }



    .fukidashi-01-08 {
      position: relative;
      width: fit-content;
      padding: 12px 16px;
      border: 2px solid #333333;
      background-color: #ffffff;
    }
    .fukidashi-01-08::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 8px;
      z-index: -2;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      border: 2px solid #333333;
      background-color: #ffffff;
    }
    .fukidashi-01-08::after {
      content: "";
      position: absolute;
      top: calc(100% + 10px);
      left: 38%;
      z-index: -1;
      width: 0px;
      height: 0px;
      transform: rotate(50deg);
      box-sizing: border-box;
      background-color: #333333;
      box-shadow: 0 2px 0 #ffffff, 0 -2px 0 #ffffff; /* 背景色と同じ色を指定 */
    }

    .fukidashi-02-01 {
      position: relative;
      width: fit-content;
      padding: 12px 20px;
      color: #ffffff;
      border-radius: 10px;
      background-color: #cc5533;
    }
    .fukidashi-02-01::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      z-index: -1;
      width: 10px;
      height: 0px;
      transform: translateX(-50%);
      box-sizing: border-box;
      background-color: #cc5533;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
