.sample {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.sample iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.img-cont {
  padding: 5px;
  width: 110px;
}
.detail-table th {
  width: 40%;
}
.detail-table td {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .detail-table {
    width: 100%;
  }
  .detail-table th,
  .detail-table td {
    display: block;
    width: 100%;
  }
  .detail-table th {
    border-bottom: none;
  }
}

.pmf-button {
  display: inline-block;
  text-decoration: none;
  padding: 10px 18px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.pmf-button--full {
  display: block;
  width: 100%;
  text-align: center;
}
.pmf-button--shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.pmf-button--fanza {
  background: #d81010;
  color: #ffffff;
  border-color: #d81010;
}
.pmf-button--fanza:hover {
  background: #b90c0c;
  color: #ffffff;
}
.pmf-button--black {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.pmf-button--black:hover {
  background: #222222;
  color: #ffffff;
}
.pmf-button--dark {
  background: #333333;
  color: #ffffff;
  border-color: #333333;
}
.pmf-button--dark:hover {
  background: #444444;
  color: #ffffff;
}
.pmf-button--outline {
  background: transparent;
  color: #d81010;
  border-color: #d81010;
}
.pmf-button--outline:hover {
  background: #d81010;
  color: #ffffff;
}
.pmf-button--custom {
  background: var(--pmf-btn-bg, #d81010);
  color: var(--pmf-btn-text, #ffffff);
  border-color: var(--pmf-btn-border, #d81010);
}
.pmf-button--custom:hover {
  background: var(--pmf-btn-hover, #b90c0c);
  color: var(--pmf-btn-hover-text, #ffffff);
}
