.headline-text {
  font-size: 40px;
}

table.hotel-list {
  flex-shrink: 1;
  width: 100%;
  border-radius: 20px;
  border-spacing: 2px;
  font-family: var(--global--font--noto-sans);
  overflow: hidden;
  border: 2px var(--global--color--pink) solid;
  border-collapse: collapse;
  background-color: var(--global--color--pink);
}
table.hotel-list tr td {
  border: 1px var(--global--color--pink) solid;
}
table.hotel-list tr:nth-of-type(1) th {
  border-left: 2px #fcbedd solid;
  border-right: 2px #fcbedd solid;
}
table.hotel-list tr:nth-last-of-type(1) td:nth-of-type(1) {
  border-radius: 0 0 0 18px;
}
table.hotel-list tr:nth-last-of-type(1) td:nth-last-of-type(1) {
  border-radius: 0 0 18px 0;
}
table.hotel-list th {
  height: 50px;
  background-color: var(--global--color--pink);
  color: var(--global--color--white);
  font-size: 16px;
}
table.hotel-list td {
  height: 50px;
  background-color: #fff4f8;
  color: var(--global--color--dark-purple);
  font-size: 14px;
  font-weight: 500;
  text-align: start;
  padding-left: 30px;
  padding-right: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  table.hotel-list td {
    font-size: 18px;
  }
}
table.hotel-list td.name-column {
  padding-left: 60px;
}
table.hotel-list td:nth-of-type(1) {
  font-size: 20px;
  font-weight: 600;
}
table.hotel-list td:nth-last-of-type(1) {
  color: var(--global--color--pink);
  font-size: 25px;
  font-weight: 700;
  text-align: end;
  padding-right: 20px;
}
table.hotel-list td:nth-last-of-type(1) div {
  display: inline-block;
  text-align: start;
}
table.hotel-list tr:nth-of-type(odd) td {
  background-color: #fddded;
}
table.hotel-list td:nth-of-type(1) {
  position: relative;
}
table.hotel-list td .num {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  margin-right: 20px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  color: var(--global--color--white);
}
table.hotel-list td .num.purple {
  background-color: var(--global--color--purple);
}
table.hotel-list td .num.blue {
  background-color: #00bbd7;
}
table.hotel-list td .name {
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  table.hotel-list {
    width: fit-content;
  }
}

@media screen and (max-width: 750px) {
  .table-container {
    width: 100%;
    overflow-x: scroll;
  }
}
.description {
  padding-left: 22px;
  font-family: var(--global--font--noto-sans);
  font-size: 19px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .description {
    font-size: 24px;
    text-align: left;
  }
}

.map {
  position: relative;
  height: 480px;
  border: 3px var(--global--color--purple) solid;
  border-radius: 20px;
  overflow: hidden;
}
.map .map-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  backdrop-filter: grayscale(100%);
}
.map .overlay {
  background-color: var(--global--color--pink);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.content-float-1040.main-content {
  padding-bottom: 65px;
}

.map-tag {
  box-sizing: border-box;
  width: 30px;
  height: 30px;
  border: solid white 2px;
  border-radius: 15px;
  background-color: var(--global--color--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: white;
}
.map-tag.business {
  background-color: #00bbd7;
}

/*# sourceMappingURL=hotel-list.css.map */
