@charset "UTF-8";
/*
 * custom.css
 * SCSSビルドとは独立したカスタムスタイル
 * 今後の追加・変更はこちらに記述してください
 */

/* 予約ボタン（free-area内） */
.free-area__reserve-btn {
  text-align: center;
  margin-bottom: 1.5rem;
}
.free-area__reserve-btn a {
  display: inline-block;
  background-color: #fdf086;
  color: #000 !important;
  padding: 0.75rem 2rem;
  border-radius: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
.free-area__reserve-btn a:hover {
  opacity: 0.8;
}

/* ハンドベル新料金表 */
.price-table--hb {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.price-table--hb th,
.price-table--hb td {
  border: 1px solid #ccc;
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
}
.price-table--hb thead th {
  background-color: #b22222;
  color: #fff;
  font-weight: bold;
}
.price-table--hb tbody td {
  background-color: #fff;
}
.price-table--hb__label {
  background-color: #fffbed !important;
  
  font-weight: bold;
  font-size: 1.2rem;
}
.price-table--hb__label span {
  font-size: 0.8rem;
  font-weight: normal;
}
.price-table--hb tbody .note {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

/* レンタルルーム料金（1件のみ表示版） */
.rental-single-price {
  width: 100%;
  margin: 0;
}
.rental-single-price .rental-single-price__item {
  display: flex;
  flex-direction: column;
  margin-right: 0 !important;
}
.rental-single-price dt {
  background-color: #EF8083;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  font-size: inherit;
}
.rental-single-price dd {
  background-color: #FEF8EA;
  color: #000;
  text-align: center!important;
  padding: 0.5rem;
  font-size: inherit;
  margin: 0;
}
@media (max-width: 576px) {
  .rental-single-price dt,
  .rental-single-price dd {
    width: 100% !important;
  }
}
