.selector {
  max-width: 240px;
  margin: 32px auto 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.selector__item {
  padding: 4px 16px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  border-bottom: 1px solid #000;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 700px) {
  .selector {
    flex-direction: row;
    max-width: 800px;
    justify-content: center;
    padding: 0 30px;
  }

  .selector__item {
    flex: 1;
  }
}

.selector__item::after {
  content: "";
  display: block;
  width: 18px;
  height: 10px;
  background-image: url(../images/room-tour/selector-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.rooms {
  padding: 0 clamp(20px, calc(37.5px + 50vw - 188.5px), 37.5px) 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.room {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.room__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  max-width: 450px;
  display: block;
  margin: 0 auto;
}

.room__title {
  font-family: "Poiret One", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
  color: var(--accent-color);
  margin-bottom: 32px;
}

.room__subtitle {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 3px;
}

.room__desc {
  margin: 16px 0;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 3px;
}

.room__info {
  padding: 16px 24px;
  min-height: 160px;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  color: #2f2f2f;
}

@media (min-width: 768px) {
  .page-intro {
    padding-bottom: 0;
  }

  .selector {
    margin: 64px auto 120px;
  }

  .rooms {
    max-width: 1032px;
    margin: 0 auto;
    gap: 120px;
    padding: 0 30px 120px;
  }

  .room {
    display: flex;
    flex-direction: row;
    gap: clamp(40px, calc(112px + 50vw - 500px), 112px);
    max-width: 944px;
    align-items: center;
  }

  .room:nth-child(even) {
    flex-direction: row-reverse;
    margin-left: auto;
  }

  .room__image {
    margin: 0;
    max-width: min(416px, 41.6vw);
  }

  .room__content {
    flex: 1;
    max-width: 416px;
  }

  .room:nth-child(even) .room__content {
    margin-right: auto;
  }

  .room__title {
    font-size: clamp(48px, 5.4vw, 64px);
    margin-bottom: 0;
    white-space: nowrap;
  }

  .room__subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .room__desc {
    margin: 32px 0;
    font-size: 20px;
    line-height: 32px;
  }

  @media (max-width: 1094px) {
    .rooms {
      margin: 0 30px;
    }
  }
}
