.type__thumbnail {
  border-radius: 1.6rem;
  overflow: hidden;
  max-width: 28rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: auto;
}
.type__thumbnail:hover {
  filter: brightness(1.1);
}
.type__thumbnail::before {
  content: "";
  display: inline-block;
  background: url(/~/media/img/contents/ichigoichie/button_play.svg) no-repeat center center;
  background-size: contain;
  width: 30%;
  height: 30%;
  position: absolute;
  pointer-events: none;
}
.type__button {
  background-color: #eee;
  max-width: 18rem;
  text-align: center;
  border-radius: var(--radius_max);
  margin: 1rem auto;
}
.type__button span {
  padding: 1rem 0;
  width: 100%;
  display: block;
}

.modal {
  display: none;
}
.modal.is-open {
  display: flex;
}
.modal__container {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}
.modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  width: 90vw;
  height: 160vw;
  max-height: 90vh;
  max-width: 56rem;
}
.modal__content iframe {
  width: 100%;
  height: 100%;
}
.modal__close {
  position: absolute;
  top: -1rem;
  right: 1rem;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}