@charset "UTF-8";
/* ↓ 船橋ホテル 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直下の読み)のフォントサイズ*/
/* ↑ 船橋ホテル フォントサイズ設定 */
body {
  color: #000000 !important;
}

h2 {
  position: relative;
  z-index: 10;
  color: #ffffff;
}

hr {
  width: 400px;
}

.type-name {
  background-color: #C4CDD4;
  color: #ffffff;
  font-size: 1.4em;
}

.weekend {
  background-color: #edf0f2;
}

.weekday {
  background-color: #f9fafb;
}

.hover {
  transition: background-color 0.5s ease, color 0.5s ease;
  font-size: 1.3em !important;
  font-weight: bold;
}
.hover:hover {
  background-color: #d0d7dd;
  color: #ffffff;
}

#price {
  position: relative;
  background: url("../img/gallery/room04.jpg") no-repeat center center/cover;
  padding: 50px 0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* オーバーレイを追加 */
}
#price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* 50% の黒オーバーレイ */
  z-index: 1;
}

/* 中のコンテンツを最前面に */
.price-contents {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.room-category {
  padding: 100px 10px;
}
.room-category .toggle-price {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
  width: 400px;
  display: flex;
  justify-content: space-between;
}
.room-category .toggle-price:hover {
  background: #555;
}
.room-category .toggle-price::after {
  content: "▶";
  font-size: 15px;
  transition: transform 0.5s ease;
}
.room-category .toggle-price.open::after {
  transform: rotate(90deg);
  /* クリック時に90度回転 */
}

.best-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  position: relative;
  margin: 0 0.7em;
}
.best-price::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #000;
}
.best-price .price-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.best-price .price-item i {
  font-size: 20px;
}
.best-price .price-info {
  display: flex;
  flex-direction: column;
}
.best-price .plan-name {
  font-size: 16px;
  font-weight: bold;
}
.best-price .price {
  font-size: 18px;
  font-weight: bold;
  color: #C4CDD4;
}

.room-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.room-container .price-slider {
  width: 50%;
}
.room-container .price-slider img {
  width: 100%;
  border-radius: 8px;
}
.room-container .room-info {
  width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}
.room-container .room-info .room-title {
  font-size: 3.1em;
  font-weight: bold;
  background: linear-gradient(to bottom, #C4CDD4, #000000);
  /* 上から下にグラデーション */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.room-container .room-info .room-title .room-subtitle {
  font-size: 0.3em;
  color: #666;
  margin-bottom: 10px;
}

.price-table {
  display: none;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  display: grid;
  overflow: hidden;
  width: 100%;
  padding: 10px 0px;
  color: #000000;
}
.price-table .grid-column1 {
  grid-column: 1/span 2;
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .price-table table {
    margin: 20px 0;
  }
}
.price-table table th,
.price-table table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
  font-size: 0.9em;
}

@media (max-width: 1000px) {
  .room-category {
    padding: 70px 10px;
  }
  .room-category .toggle-price {
    width: 85%;
  }
  .room-container {
    gap: 0px;
    flex-direction: column;
  }
  .room-container .price-slider {
    width: 85%;
  }
  .room-container .room-info {
    width: 85%;
    gap: 10px;
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  #price {
    height: 250px;
  }
  .room-category {
    padding: 50px 10px;
  }
  .room-category .toggle-price {
    width: 100%;
  }
  .room-container .room-info {
    width: 100%;
  }
  .room-container .room-info .room-title {
    font-size: 1.7em;
  }
  .best-price .price {
    font-size: 13px;
  }
  .hover {
    transition: background-color 0.5s ease, color 0.5s ease;
    font-size: 1em !important;
    font-weight: bold;
  }
}
footer {
  color: #C4CDD4;
}/*# sourceMappingURL=price.css.map */