@charset "UTF-8";
/* ↓ garnet Color設定 */
/* ↑ garnet Color設定 */
/* ↓ garnet 変数設定 */
/* ↑ garnet 変数設定 */
/* ↓ amethyst フォントサイズ設定 */
/*↑基本的なフォントサイズ*/
/*↑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直下の読み)のフォントサイズ*/
/* ↑ amethyst フォントサイズ設定 */
h4 {
  width: 100%;
  background-color: #C73659;
  text-align: center;
  padding: 10px 0;
}

.main-contents section {
  padding: 90px 0 0;
}

.payment,
.equipment,
.amenity {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}
.payment > p,
.equipment > p,
.amenity > p {
  padding: 20px 5px;
}

/*------------------------------------------------------------------------------*/
/* ↓ payment
/*------------------------------------------------------------------------------*/
.payment-contents {
  padding: 1rem;
  background-color: #f9f9f9;
}
.payment-contents > p {
  color: #333333;
  padding: 10px 5px;
  font-size: 16px;
}
.payment-contents img {
  width: 100px;
}

.payment-List {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
}
.payment-List img {
  max-width: 100px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
  .payment-List {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }
}
@media (max-width: 480px) {
  .payment-contents img {
    width: 25%;
  }
}
/*------------------------------------------------------------------------------*/
/* ↑ payment
/*------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------*/
/* ↓ price
/*------------------------------------------------------------------------------*/
.price-contents {
  max-width: 1200px;
  margin: 0 auto;
}

.price-attention {
  text-align: center;
  font-size: 22px;
}

.type-name {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background-color: #dddddd;
  color: #000000;
  font-size: 30px;
  font-weight: bold;
}

.price-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0px 20px;
}
.price-top img {
  width: 70%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}

.best-price {
  border-left: 3px solid #fff;
  padding-left: 1rem;
  margin: 1.5rem 0 0 1.5rem;
  height: 250px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.best-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.best-item .icon {
  font-size: 1.3rem;
  margin-top: 0.15rem;
}

.label-group {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
.label-group .label {
  font-size: 1.3rem;
}
.label-group .value {
  font-size: 1.1rem;
}
.label-group .value .price {
  color: #A91D3A;
  font-weight: bold;
}

#atype,
#btype,
#ctype {
  padding-top: 8vw;
}
.room-type-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.room-type-wrapper .hover {
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #A91D3A;
}
.room-type-wrapper .hover:hover {
  color: #ffffff;
  background-color: #C73659;
}
.room-type-wrapper .dayuse,
.room-type-wrapper .freetime,
.room-type-wrapper .stay {
  padding: 1rem;
  color: #fff;
  text-align: center;
}
.room-type-wrapper .dayuse p,
.room-type-wrapper .freetime p,
.room-type-wrapper .stay p {
  font-size: 1.8rem;
  font-weight: bold;
}
.room-type-wrapper .dayuse table,
.room-type-wrapper .freetime table,
.room-type-wrapper .stay table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.room-type-wrapper .dayuse table th,
.room-type-wrapper .dayuse table td,
.room-type-wrapper .freetime table th,
.room-type-wrapper .freetime table td,
.room-type-wrapper .stay table th,
.room-type-wrapper .stay table td {
  padding: 0.5rem;
  border: 1px solid #ccc;
}
.room-type-wrapper .dayuse table th,
.room-type-wrapper .freetime table th,
.room-type-wrapper .stay table th {
  background-color: rgba(255, 255, 255, 0.1);
}
.room-type-wrapper .dayuse.wide,
.room-type-wrapper .freetime.wide,
.room-type-wrapper .stay.wide {
  grid-column: span 2;
}

.price span,
.hover span,
table tr:last-child td span {
  font-size: 0.8em;
}

@media (max-width: 768px) {
  .price-attention {
    font-size: 3vw;
  }
  .type-name {
    padding: 3vw 0;
    font-size: 4.8vw;
  }
  .price-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .price-top img {
    width: 100%;
    height: 55vw;
    -o-object-position: 0 100%;
       object-position: 0 100%;
  }
  .best-price {
    margin: 1.5rem 0 0 1.5vw;
  }
  #atype,
  #btype,
  #ctype {
    padding: 8vw 0 15vw;
  }
  #ctype {
    padding: 8vw 0 0;
  }
  .room-type-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5vw;
    margin-top: 0;
  }
  .room-type-wrapper .dayuse,
  .room-type-wrapper .freetime,
  .room-type-wrapper .stay {
    padding: 10px 5px;
  }
  .room-type-wrapper .dayuse.wide,
  .room-type-wrapper .freetime.wide,
  .room-type-wrapper .stay.wide {
    grid-column: 1;
  }
}
/*------------------------------------------------------------------------------*/
/* ↑ price
/*------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------*/
/* ↓ amenity
/*------------------------------------------------------------------------------*/
.equipment,
.amenity {
  padding: 20px 0;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 5px 20px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5px 20px;
}

.equipment-item {
  text-align: center;
  width: 100%;
}
.equipment-item p {
  font-size: 0.7em;
  font-weight: bold;
}
.equipment-item img {
  width: 50px;
}

.amenity-item {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
}
.amenity-item p {
  font-size: 0.7em;
  font-weight: bold;
}
.amenity-item img {
  width: 40px;
}

.amenity-heading {
  text-align: center;
  font-size: 1.1em;
}

@media (max-width: 1024px) {
  .amenity-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .equipment-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenity-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .amenity-item {
    flex-direction: column;
  }
}
/*------------------------------------------------------------------------------*/
/* ↑ amenity
/*------------------------------------------------------------------------------*//*# sourceMappingURL=price.css.map */