/* モーダル */
.m_modal{
  display: none;
  padding: 20px;
}
.m_modal__inner{
  width: fit-content;
  margin: 0 auto;
  max-height: 80vh;
  overflow: auto;
}
.m_modal__btn{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.m_modal__btnTatget{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid;
  border-radius: 50%;
  background: #fff;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  transition: opacity .3;
  text-decoration: none;
}
.m_modal__btnTatget:hover{
  opacity: .7;
  text-decoration: none;
}