@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.rentalSpace-main {
  width: 100%;
  overflow: hidden;
  --color-blue:#2f6eb2;
  --color-aqua:#45b5e9;
  --color-orange:#cf722a;
  --color-grey:#aaa;
  --color-bg-orange:#fcebcb;
  --color-bg-aqua:#a7d7f3;
  --color-bg-paleaqua:#f1f8fc;
  --color-border-grey:#707070;
  --border-radius-regular:10px;
  --font-size-h2:30px;
  --font-size-h3:25px;
  --font-size-h4:18px;
  --font-size-copy:22px;
  --font-size-text:15px;
  --font-size-base:14px;
  --line-height-title:1.5;
  --line-height-text:2;
  --arrow-size:20px;
}
@media (min-width: 750.02px) {
  .rentalSpace-main {
    --font-size-h2:40px;
    --font-size-h3:32px;
    --font-size-h4:20px;
    --font-size-copy:30px;
    --font-size-text:18px;
    --font-size-base:16px;
    --border-radius-regular:20px;
    --arrow-size:43px;
  }
}

.pagetitle-rental-space {
  background-image: url(../img/rental-space/bg-pagetitle-smt.jpg);
}
.pagetitle-rental-space img {
  width: 163px;
}

.rentalSpace-catch {
  padding: 40px 15px;
}
.rentalSpace-catch__copy {
  font-weight: bold;
  text-align: center;
  font-size: var(--font-size-copy);
  color: var(--color-blue);
  line-height: var(--line-height-title);
}
.rentalSpace-catch__images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 32px auto 0;
}

.rentalSpace-news {
  background: url(../img/rental-space/bg-news.jpg);
  padding: 40px 15px 60px;
}
.rentalSpace-news__title {
  text-align: center;
  font-size: var(--font-size-copy);
  line-height: var(--line-height-title);
  margin: 0 0 0.8em;
}
.rentalSpace-news__board {
  background-color: #fff;
  border-radius: var(--border-radius-regular);
  max-width: 624px;
  margin: 0 auto;
  padding: 33px 15px 34px;
}
.rentalSpace-news__list {
  max-width: 491px;
  margin: 0 auto;
  gap: 15px;
}
.rentalSpace-news__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 0 8px;
}
.rentalSpace-news__item + .rentalSpace-news__item {
  border-top: 1px solid var(--color-border-grey);
}
.rentalSpace-news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  text-align: right;
  letter-spacing: 0.03em;
}
.rentalSpace-news__link {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-transition: 0.3s color ease-in-out;
  -o-transition: 0.3s color ease-in-out;
  transition: 0.3s color ease-in-out;
}
.rentalSpace-news__link:hover {
  color: var(--color-aqua);
}
.rentalSpace-news__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 50px;
  border-radius: 5px;
  background-color: var(--color-aqua);
  color: #fff;
  font-weight: bold;
  margin: 40px auto 0;
}
.rentalSpace-news__button:hover {
  opacity: 0.6;
}

.rentalSpace-about {
  padding: 45px 0 40px;
}
.rentalSpace-about__title {
  text-align: center;
  font-weight: bold;
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  margin: 0 0 0.8em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 0 15px;
}
.rentalSpace-about__copy {
  text-align: center;
  font-weight: bold;
  font-size: var(--font-size-h3);
  line-height: 1.4;
  color: var(--color-orange);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 0 15px;
}
.rentalSpace-about__textbox {
  max-width: 959px;
  margin: 32px auto 0;
  padding: 0 15px;
}
.rentalSpace-about__textbox p {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.rentalSpace-about__slider {
  position: relative;
  max-width: 1110px;
  margin: 44px auto 0;
}
.rentalSpace-about__slider .rentalSpaceSwiper {
  overflow: visible;
}
.rentalSpace-about__slider .swiper-slide {
  width: 200px;
}
.rentalSpace-about__prev, .rentalSpace-about__next {
  width: var(--arrow-size);
  height: var(--arrow-size);
  position: absolute;
  top: calc(50% - var(--arrow-size) * 0.5);
  z-index: 10;
  cursor: pointer;
  -webkit-transition: 0.3s opacity ease-in-out;
  -o-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.rentalSpace-about__prev:hover, .rentalSpace-about__next:hover {
  opacity: 0.6;
}
.rentalSpace-about__prev {
  left: 20px;
}
.rentalSpace-about__next {
  right: 20px;
}
.rentalSpace-about__information {
  background-color: var(--color-bg-orange);
  border-radius: var(--border-radius-regular);
  max-width: 782px;
  margin: 27px auto 0;
  padding: 30px 15px;
}
.rentalSpace-about__information table {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.rentalSpace-about__information table th, .rentalSpace-about__information table td {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  letter-spacing: 0.06em;
}
.rentalSpace-about__information table th {
  width: 80px;
}

.rentalSpace-covid {
  padding: 30px 15px 40px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(161, 196, 253)), to(rgb(194, 233, 251)));
  background: -o-linear-gradient(left, rgb(161, 196, 253) 0%, rgb(194, 233, 251) 100%);
  background: linear-gradient(90deg, rgb(161, 196, 253) 0%, rgb(194, 233, 251) 100%);
}
.rentalSpace-covid__board {
  border-radius: var(--border-radius-regular);
  background: #fff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 25px 15px 35px;
}
.rentalSpace-covid__title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  text-align: center;
  font-weight: bold;
  margin: 0 0 0.5em;
}
.rentalSpace-covid__copy {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  text-align: center;
}
.rentalSpace-covid__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin: 25px auto 0;
  gap: 40px 10px;
}
.rentalSpace-covid__item picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 70px;
}
.rentalSpace-covid__item p {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  text-align: center;
  margin: 0.2em 0 0;
}

.rentalSpace-service {
  padding: 40px 15px;
}
.rentalSpace-service__title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  text-align: center;
  font-weight: bold;
  margin: 0 0 0.8em;
}
.rentalSpace-service__copy {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  text-align: center;
}
.rentalSpace-service__list {
  background-color: var(--color-aqua);
  border-radius: var(--border-radius-regular);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  max-width: 1180px;
  margin: 20px auto;
  padding: 25px 10px 20px;
}
.rentalSpace-service__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.rentalSpace-service__item figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 110px;
}
.rentalSpace-service__item p {
  color: #fff;
  text-align: center;
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
}

.rentalSpace-reserve {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(11, 186, 251)), to(rgb(66, 133, 236)));
  background: -o-linear-gradient(left, rgb(11, 186, 251) 0%, rgb(66, 133, 236) 100%);
  background: linear-gradient(90deg, rgb(11, 186, 251) 0%, rgb(66, 133, 236) 100%);
}
.rentalSpace-reserve__button {
  border-radius: var(--border-radius-regular);
  background-color: #fff;
  height: 90px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--font-size-copy);
  color: var(--color-blue);
  font-weight: bold;
  -webkit-transition: 0.3s opacity ease-in-out;
  -o-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.rentalSpace-reserve__button:hover {
  opacity: 0.6;
}

.rentalSpace-flow {
  padding: 40px 15px;
}
.rentalSpace-flow__title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  text-align: center;
  font-weight: bold;
  margin: 0 0 0.6em;
}
.rentalSpace-flow__copy {
  font-size: var(--font-size-text);
  line-height: var(--line-height-text);
  text-align: center;
}
.rentalSpace-flow__list {
  display: -ms-grid;
  display: grid;
  max-width: 1200px;
  margin: 30px auto 0;
  gap: 30px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.rentalSpace-flow__card {
  border-radius: var(--border-radius-regular);
  border: 3px solid #e98a51;
  background-color: #fff;
  max-width: 1200px;
  margin: 0 auto;
}
.rentalSpace-flow__cardtitle {
  border-radius: calc(var(--border-radius-regular) * 0.5) calc(var(--border-radius-regular) * 0.5) 0 0;
  background-color: #e98a51;
  color: #fff;
  line-height: 1;
  padding: 0.5em 0.1em 0.8em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rentalSpace-flow__cardtitle i {
  font-size: var(--font-size-h2);
  font-style: italic;
  line-height: 1;
  margin: 0 0.15em 0 0;
}
.rentalSpace-flow__cardtitle span {
  font-size: var(--font-size-h4);
  font-weight: bold;
  line-height: 1.3;
}
.rentalSpace-flow__cardbody {
  padding: 1.4em 1.2em 2.2em;
}
.rentalSpace-flow__illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.rentalSpace-flow__banner {
  text-align: center;
  margin: 40px 0 0;
}
.rentalSpace-flow__banner a {
  -webkit-transition: 0.3s opacity ease-in-out;
  -o-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.rentalSpace-flow__banner a:hover {
  opacity: 0.6;
}

.rentalSpace-price {
  background: url(../img/rental-space/bg-price.jpg) no-repeat center center/cover;
  padding: 40px 15px;
}
.rentalSpace-price__block + .rentalSpace-price__block {
  margin-top: 70px;
}
.rentalSpace-price__title {
  font-size: var(--font-size-h2);
  line-height: var(--line-height-title);
  text-align: center;
  font-weight: bold;
  margin: 0 0 1.05em;
}
.rentalSpace-price__title small {
  font-size: 0.675em;
}
.rentalSpace-price__subtitle {
  font-size: var(--font-size-h3);
  line-height: var(--line-height-title);
  text-align: center;
  font-weight: bold;
  margin: 0 0 1.05em;
}
.rentalSpace-price__table {
  max-width: 804px;
  width: 100%;
  margin: 0 auto;
}
.rentalSpace-price__table + .rentalSpace-price__title {
  margin: 0.5em 0 0.5em;
}
.rentalSpace-price__table.fixed {
  table-layout: fixed;
}
.rentalSpace-price__table th, .rentalSpace-price__table td {
  border: 1px solid var(--color-border-grey);
  text-align: center;
  vertical-align: middle;
  padding: 0.5em 1em;
}
.rentalSpace-price__table thead th {
  background-color: var(--color-bg-aqua);
}
.rentalSpace-price__table tbody th {
  background-color: var(--color-bg-paleaqua);
  width: 120px;
}
.rentalSpace-price__table tbody td {
  background-color: #fff;
  letter-spacing: 0.2em;
}
.rentalSpace-price__notes {
  max-width: 804px;
  margin: 1em auto 0;
  font-size: 0.875em;
  text-indent: -1em;
  padding-left: 1em;
}
.rentalSpace-price__footer {
  margin: 50px 0 0;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.rentalSpace-price__footer .rentalSpace-news__button {
  margin: 0 auto;
}
.rentalSpace-price__privacy {
  overflow: auto;
  max-width: 1000px;
  margin: 50px auto 0;
  border: 1px solid #abaaaa;
  background-color: #fff;
  padding: 30px 15px;
  height: 300px;
  -webkit-overflow-scrolling: touch;
}
.rentalSpace-price__privacyinner {
  max-width: 930px;
  margin: 0 auto;
}
.rentalSpace-price__privacyinner h2 {
  font-weight: bold;
  font-size: 14px;
  margin: 0 0 0.5em;
}
.rentalSpace-price__privacyinner * + h2 {
  margin-top: 1.5em;
}
.rentalSpace-price__privacyinner p, .rentalSpace-price__privacyinner ol {
  padding: 0 0 0 1em;
}
.rentalSpace-price__privacyinner p, .rentalSpace-price__privacyinner li {
  font-size: 13px;
  line-height: 1.75;
}
.rentalSpace-price__privacyinner li {
  text-indent: -1em;
  padding-left: 1em;
}

.rentalSpace-dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.rentalSpace-dates > div {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.rentalSpace-form {
  padding: 45px 15px;
}
.rentalSpace-form__title {
  font-size: var(--font-size-copy);
  text-align: center;
  font-weight: bold;
  color: var(--color-blue);
  margin: 0 0 1.5em;
}
.rentalSpace-form__tips {
  font-weight: bold;
  color: #dc5d58;
  margin: 0.5em 0 0;
}
.rentalSpace-form__submit {
  height: 53px;
  background-color: var(--color-blue);
  max-width: 443px;
  width: 100%;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: var(--font-size-h4);
  margin: 45px auto 0;
  cursor: pointer;
  -webkit-transition: 0.3s opacity ease-in-out;
  -o-transition: 0.3s opacity ease-in-out;
  transition: 0.3s opacity ease-in-out;
}
.rentalSpace-form__submit:hover {
  opacity: 0.6;
}
.rentalSpace-form__main {
  max-width: 810px;
  margin: 0 auto;
}
.rentalSpace-form__main select {
  border: 1px solid #999999;
  padding: 10px 15px;
  font-size: var(--font-size-text);
}
.rentalSpace-form__main input, .rentalSpace-form__main textarea {
  width: 100%;
  border: 1px solid #999999;
  padding: 10px 15px;
  font-size: var(--font-size-text);
}
.rentalSpace-form__main textarea {
  height: 190px;
  min-height: 100px;
  resize: vertical;
}
.rentalSpace-form__privacy {
  text-align: center;
  margin: 35px 0 0;
}
.rentalSpace-form__privacy label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.rentalSpace-form__privacy input {
  display: none;
}
.rentalSpace-form__privacy input:checked + i {
  border-color: var(--color-blue);
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%22440.469%2C73.413%20218.357%2C295.525%2071.531%2C148.709%200%2C220.229%20146.826%2C367.055%20218.357%2C438.587%20289.878%2C367.055%20512%2C144.945%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
  background-size: 8px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.rentalSpace-form__privacy i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
}
.rentalSpace-form__privacy span {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 0 0 0.5em;
}
.rentalSpace-form__block {
  border-top: 1px dashed #999999;
  border-bottom: 1px dashed #999999;
}
.rentalSpace-form__block.is-hidden {
  display: none;
}
.rentalSpace-form__block + .rentalSpace-form__block {
  border-top: none;
}
.rentalSpace-form__block dd {
  font-size: var(--font-size-base);
  padding: 12px 0;
}
.rentalSpace-form__block dt {
  padding: 12px 8px;
  background-color: var(--color-bg-paleaqua);
  position: relative;
  font-size: var(--font-size-base);
}
.rentalSpace-form__block dt.required::after {
  content: "必須";
  background-color: #dc5d58;
  font-size: 13px;
  width: 50px;
  height: 23px;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10px;
  top: calc(50% - 11px);
}

.contact-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-zip__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.contact-zip__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
}
.contact-zip__button {
  background-color: var(--color-bg-aqua);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
  width: 75px;
  height: 36px;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.contact-zip__button:hover {
  opacity: 0.6;
}

.contact-pref {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 20px 0 0;
}
.contact-pref__label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
.contact-pref__select {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contact-address {
  margin: 20px 0 0;
}

.contact-hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

.contact-radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}
.contact-radios label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.contact-radios label input {
  display: none;
}
.contact-radios label input:checked + span {
  color: var(--color-aqua);
}
.contact-radios label input:checked + span::before {
  content: "radio_button_checked";
}
.contact-radios label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-radios label span::before {
  content: "radio_button_unchecked";
  font-family: "Material Icons";
  margin: 0 0.2em 0 0;
  line-height: 0;
}

.contact-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
}
.contact-check label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.contact-check input {
  display: none;
}
.contact-check input:checked + i {
  border-color: var(--color-blue);
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%22440.469%2C73.413%20218.357%2C295.525%2071.531%2C148.709%200%2C220.229%20146.826%2C367.055%20218.357%2C438.587%20289.878%2C367.055%20512%2C144.945%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E");
  background-size: 8px auto;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-check i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
}
.contact-check span {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  margin: 0 0 0 0.5em;
}

@media (min-width: 750.02px) {
  .pagetitle-rental-space {
    background-image: url(../img/rental-space/bg-pagetitle.jpg);
  }
  .pagetitle-rental-space img {
    width: 335px;
  }
  .rentalSpace-catch {
    padding: 80px 15px 115px;
  }
  .rentalSpace-catch__images {
    margin: 52px auto 0;
  }
  .rentalSpace-news {
    padding: 51px 15px 70px;
  }
  .rentalSpace-news__item {
    gap: 24px;
  }
  .rentalSpace-news__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 130px;
            flex: 0 0 130px;
    width: 130px;
  }
  .rentalSpace-about {
    padding: 85px 0 80px;
  }
  .rentalSpace-about__slider {
    margin: 64px auto 0;
  }
  .rentalSpace-about__slider .swiper-slide {
    width: 368px;
  }
  .rentalSpace-about__information {
    margin: 51px auto 0;
    padding: 40px 15px 48px;
  }
  .rentalSpace-about__information table th {
    width: 108px;
  }
  .rentalSpace-covid {
    padding: 51px 15px 57px;
  }
  .rentalSpace-covid__board {
    padding: 35px 15px 53px;
  }
  .rentalSpace-covid__list {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 35px auto 0;
    gap: 40px 20px;
  }
  .rentalSpace-covid__item picture {
    height: 130px;
  }
  .rentalSpace-service {
    padding: 76px 15px 67px;
  }
  .rentalSpace-service__list {
    gap: 45px;
    margin: 36px auto 0;
    padding: 25px 10px 20px;
  }
  .rentalSpace-reserve {
    height: 252px;
  }
  .rentalSpace-flow {
    padding: 66px 15px 77px;
  }
  .rentalSpace-flow__list {
    -ms-grid-columns: 1fr 21px 1fr 21px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px 21px;
  }
  .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(2), .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(1), .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(4) {
    position: relative;
  }
  .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(2)::before, .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(1)::before, .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(4)::before {
    content: "";
    width: 26px;
    height: 49px;
    -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
    background-color: var(--color-border-grey);
    position: absolute;
    top: calc(50% - 17px);
    right: -16px;
  }
  .rentalSpace-flow__banner {
    margin: 70px 0 0;
  }
  .rentalSpace-price {
    padding: 60px 15px;
  }
  .rentalSpace-price__table tbody th {
    width: 200px;
  }
  .rentalSpace-price__privacyinner h2 {
    font-size: 16px;
  }
  .rentalSpace-price__privacyinner p, .rentalSpace-price__privacyinner li {
    font-size: 14px;
  }
  .rentalSpace-form {
    padding: 80px 15px;
  }
  .rentalSpace-form__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .rentalSpace-form__block dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 265px;
            flex: 0 0 265px;
    width: 265px;
    padding: 20px 30px 20px 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rentalSpace-form__block dd {
    padding: 20px 35px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .contact-zip__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .contact-zip__input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 322px;
  }
  .contact-zip__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 120px;
            flex: 0 0 120px;
    width: 120px;
    height: 40px;
    margin-left: 25px;
  }
  .contact-pref__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .contact-pref__select {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    max-width: 322px;
  }
  .contact-address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact-address__label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
  }
  .contact-address__input {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}
@media (max-width: 750px) {
  .hidden--mobile {
    display: none;
  }
  .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(2), .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(1), .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(3), .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(4) {
    position: relative;
  }
  .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(2)::before, .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(1)::before, .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(3)::before, .rentalSpace-flow__list .rentalSpace-flow__card:nth-child(4)::before {
    content: "";
    height: 26px;
    width: 49px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    background-color: var(--color-border-grey);
    position: absolute;
    bottom: -20px;
    left: calc(50% - 25px);
  }
}