/*今週のチラシ4/22号*/

/*吹き出し*/
.fukidashi-0422 {
　margin: 0 auto;
  position: relative;
　text-align: center;
  justify-content: center;
　align-items: center;
  width: fit-content;
  padding: 12px 20px;
  color: #ffffff;
  border-radius: 10px;
  background-color: #e73828;
  isolation: isolate;

  &::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -1;
    width: 20px;
    height: 12px;
    box-sizing: border-box;
    background-color: #e73828;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    translate: -50% 0;
  }
}

/*ボタン*/

.btn a{
 text-decoration: none;
}

a.btn01{
  border: 2px solid #1d2087;
  border-radius: 50px;
  background: #fff;
  display: flex;
  justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    color: #1d2087;
}

a.btn01:hover{
  color: #fff;
  background: #1d2087;
}

a.btn02{
  background: #1d2087;
  border: 2px solid #1d2087;
  color: #fff;
  border-radius: 50px;
   display: flex;
  justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
}

a.btn02:hover{
  color: #1d2087;
  border: 2px solid #1d2087;
  background: #fff;
}