.youtube_player {
  aspect-ratio: 16/9;
  width: 100%;
}

.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1400px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .cards {
    display: flex;
    flex-direction: column;
  }
}

.card-item {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 50px 30px;
  background: #FFF;
  flex: 1;
}
.card-item img {
  aspect-ratio: 3/2;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/3;
}
.card-item .title {
  font-size: 20px;
  text-align: center;
}
.card-item .content {
  font-size: 16px;
  line-height: 1.5;
}

#about-asago {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5vw, 100px);
}
#about-asago h2 {
  text-align: center;
  font-size: clamp(20px, 3vw, 40px);
  line-height: 1.4;
}
#about-asago h2 small {
  display: block;
  font-size: 0.5em;
}

.sightseeings {
  display: flex;
  flex-direction: row-reverse;
  gap: 22px;
  width: clamp(300px, 90vw, 1560px);
  margin-left: auto;
  margin-right: auto;
}
.sightseeings h3 {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 26px;
  gap: 40px;
  letter-spacing: 0.1em;
  flex-basis: 2em;
}
.sightseeings h3 span {
  order: 1;
}
.sightseeings h3::before {
  content: "";
  border-left: 1px solid #000;
  order: 2;
  flex: auto;
}
.sightseeings h3 small {
  font-size: 0.6em;
  font-weight: normal;
  order: 3;
  letter-spacing: 0;
}
/*# sourceMappingURL=maps/page-business-hotel.css.map */