@charset "UTF-8";
/* ↓ エルメ Color設定 */
/* ↓ エルメ Color設定 */
/* ↑ エルメ Color設定 */
/* ↓ エルメ 変数設定 */
/* ↑ エルメ 変数設定 */
/* ↓ エルメ フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑h4タグのフォントサイズ ($basic-font-sizeの1.5倍の大きさ)*/
/*↑h3タグのフォントサイズ ($h4-font-sizeの1.5倍の大きさ)*/
/*↑h2タグのフォントサイズ ($h3-font-sizeの1.5倍の大きさ)*/
/*↑h1タグのフォントサイズ ($h2-font-sizeの1.5倍の大きさ)*/
/*↑サブタイトル(h2直下の読み)のフォントサイズ*/
/* ↑ エルメ フォントサイズ設定 */
h3 {
  font-size: 2.5rem;
  text-align: center;
}

#dayuse,
#freetime,
#stay {
  padding: 50px 10px;
}

.noPrice {
  font-size: 0.75em;
  letter-spacing: 0.08em;
}

.typeSelect {
  display: flex;
  margin: 1em auto;
  max-width: 600px;
  border-bottom: solid 1px #666666;
  justify-content: center;
}
.typeSelect a {
  padding: 6px 14px;
  cursor: pointer;
  text-decoration: none;
  color: #999999;
  transition: 0.3s;
  width: 170px;
  text-align: center;
  border-top: solid 1px #666666;
  border-left: solid 1px #666666;
}
.typeSelect a:last-child {
  border-right: solid 1px #666666;
}
.typeSelect a.active {
  background-color: #555555;
  color: #fff;
}

.price-table-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 5px;
  letter-spacing: 0;
}

.price-table {
  display: none;
  gap: 15px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.price-table.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 1;
}
.price-table.active {
  display: flex;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  height: 0;
  text-align: center;
}
.price-table table th,
.price-table table td {
  border: 1px solid #ccc;
  padding: 12px 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.price-table table td:not(.noPrice):hover {
  background-color: rgba(255, 255, 255, 0.7490196078);
  color: #000000;
}
.price-table img {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.type-room-img {
  width: 70%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.payment-contents {
  margin-top: 60px;
  padding: 30px;
  background-color: #f8f8f8;
  border-radius: 10px 10px 0 0;
  text-align: center;
}
.payment-contents h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}
.payment-contents .payment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.payment-contents .payment-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
}
.payment-contents .payment-list li strong {
  color: #000;
}

@media (max-width: 850px) {
  .price-table {
    flex-direction: column;
  }
  .type-room-img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 360px;
  }
}
@media (max-width: 480px) {
  h3 {
    font-size: 8vw;
  }
  .typeSelect a {
    font-size: 0.7em;
  }
  .type-room-img {
    height: 200px;
  }
}/*# sourceMappingURL=price.css.map */