@charset "utf-8";

/* taxi/index.php */
/* header */

.header {
  padding-right: calc(var(--call-width) + var(--space) * 2);
}

.call {
  background-color: var(--color-main);
  color: var(--color-text-white);
  line-height: var(--line-height);
  padding-top: 0.5rem;
}

@media screen and (max-width: 767px) {
  .site-title {
    min-width: 15rem;
  }

  .call {
    height: 3.5rem;
  }
}

/* section-access */
.section-access {
  background-color: var(--color-bg-main);
  margin-bottom: 0;
}

/* taxi/car.php */
.list-border {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.regular .flex-2-col {
  margin-bottom: var(--space-xl);
  background-image: ("../../images/list_bg.jpg");
  background-color: rgba(255,255,255,0.8);
  background-blend-mode: lighten;
}

.regular .flex-2-col, .van .flex-2-col {
  align-items: center;
}

.regular > div p, .van > div p {
  font-size: var(--font-size-lg);
  text-align: center;
}

/* taxi/price.php */
td {
  padding: var(--space-sm) 0;
}

tbody tr td:nth-of-type(1) {
  width: 25%;
}

tbody tr td:nth-of-type(2) {
  text-align: center;
  width: 50%;
}

tbody tr td:nth-of-type(3) {
  text-align: right;
  width: 25%;
}

.inner-title {
  margin-top: var(--space-2xl);
}

/*sightseeing.php*/
.sites .flex-2-col figure {
  flex: 3;
}

.sites p {
  white-space: pre-line;
  flex: 2;
}

.sites figcaption {
  text-align: right;
}