/**
 * ワイン販売エントリーのご案内
 * template-parts/wine-entry.php 用スタイル
 */

.block_reservation {
  margin: 2.5em auto 0;
  /* max-width: 1200px; */
  background: #ddd9d2;

  @media only screen and (min-width: 786px) {
    display: grid;
    grid-template-columns: 40% 1fr;
  }
}

.block_reservation:nth-child(1) {
  margin-top: 0;
}

.block_reservation__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block_reservation__detail {
  padding-right: 2.25em;
  padding-left: 2.25em;
}

.block_reservation__detail {
  padding: 1.75em 3.542vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.block_reservation__detail {
  position: relative;
}

/* オーバーレイ有効時 */
.block_reservation__detail.has-overlay {
  pointer-events: none;
}

/* オーバーレイ共通 */
.block_reservation__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* closed時のオーバーレイ */
.block_reservation__overlay.is-closed {
  background: rgba(0, 0, 0, 0.4);
}

/* オーバーレイテキスト */
.block_reservation__overlay-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  padding: 1em 2em;
  border: 2px solid #333;
  background: rgba(255, 255, 255, 0.7);
}

/* closed時のテキストスタイル */
.block_reservation__overlay.is-closed .block_reservation__overlay-text {
  color: #c00;
  border-color: #c00;
}

/* PC向け */
@media (min-width: 768px) {
  .block_reservation__overlay-text {
    font-size: 2rem;
  }
}
