.frame {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px 10px;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.breadcrumb {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 1.2em 1.5em;
  background-color: #333;
  border-radius: 5px;
  color: #fff;
}
  .breadcrumb__item {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 25em;
    color: #fff;
    text-decoration: none;
  }
    a.breadcrumb__item:hover {
      text-decoration: underline;
    }
  .breadcrumb__separator {
    padding: 0 0.8em;
  }


.place {
  width: 100%;
}
  .place__top {
    position: relative;
  }
    .place__mainimg {
      display: block;
      width: 100%;
      /* height:450px; */
      object-fit: cover;
    }
    .place__caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5em 1em;
      background-color: rgba(28 181 105 / 75%);
      color: #fff;
      font-weight: bold;
    }
  .place__block {
    width: 100%;
    margin: 0 auto 20px;
    padding: 10px 30px 30px;
    background-color: #efeff5;
  }
    .place__tagline {
      padding: 0.5em;
      font-size: 3.2rem;
      font-weight: bold;
    }
    .place__status {
      display: flex;
      justify-content: space-between;
      font-size: 1.4rem;
    }
      .place__vacancy {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.2em;
        padding: 0.1em 0.8em 0.2em;
        border-radius: 3px;
        font-size: 1.4em;
      }
        .place__vacancy--ok {
          background-color: var(--green);
          color: #fff;
        }
        .place__vacancy--full {
          background-color: #888;
          color: #fff;
        }
        .place__vacancy--ask {
          background-color: var(--orange);
          color: #fff;
        }
    .place__name {
      padding: 0.5em 0;
      font-size: 2.8rem;
      font-weight: bold;
    }
    .place__price {
      padding: 1em 0;
    }
      .place__price>span {
        padding: 0 0.1em;
        color: #f00;
        font-size: 1.8em;
      }
    .place__tags {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 5px;
      padding: 10px 0;
    }
      .place__tag {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.2em 0.6em 0.3em;
        background-color: #e7f4f7;
        font-size: 1.2rem;
        font-weight: bold;
      }
    .place__buttons {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      gap: 10px;
      margin: 20px auto 0;
    }
      .place__button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 2.8em;
        border-radius: 1.4em;
        background-color: #87d93a;
        box-shadow: var(--shadow);
        color: #fff;
        font-size: 2.0rem;
        font-weight: bold;
        text-decoration: none;
      }
        .place__button--request {
          background-color: var(--orange);
        }
    .place__head {
      padding: 1em 0 1em 32px;
      background-image: url('/images/head_icon_1.png');
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: left;
      font-size: 2.0rem;
      font-weight: bold;
    }
    .place__ul {
      list-style: none;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
    }
      .place__li {
        padding: 0.2em 0 0.2em 30px;
        background-image: url('/images/li_icon_1.png');
        background-repeat: no-repeat;
        background-size: 18px;
        background-position: left;
      }
    .place__photos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: flex-start;
      gap: 10px;
    }
      .place__photo {
        width: 100%;
        height: 200px;
        object-fit: cover;
        margin: auto;
        border-radius: 5px;
      }
    .place__container-right {
      margin: 10px 0;
      text-align: right;
    }
      .place__more {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 2.4em;
        padding: 0 1.8em;
        border-radius: 1.2em;
        background-color: #87d93a;
        color: #fff;
        font-weight: bold;
        cursor: pointer;
      }
    .place__table {
      width: 100%;
      margin: 0 auto;
      padding: 20px 0;
      text-align: left;
      font-size: 1.4rem;
    }
      .place__th {
        width: 35%;
        border: solid 1px #aaa;
        background-color: #efeff5;
        padding: 0.8em 1em;
        font-weight: bold;
      }
      .place__td {
        border: solid 1px #aaa;
        background-color: #fff;
        padding: 0.8em 1em;
        font-weight: normal;
      }
    .place__block iframe {
      width: 100%;
      height: 30vh;
      margin-top: 20px;
      border-style: none;
    }
    .place__access {
      display: grid;
      grid-template-columns: 1fr 4fr;
      align-items: flex-start;
      padding: 20px 0;
      font-size: 1.4rem;
      font-weight: bold;
    }
      .place__access>div {
        padding: 0.7em 1.4em;
        border-bottom: solid 2px #efeff5;
        background-color: #fff;
      }

    .plan {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 15px;
      align-items: flex-start;
      padding: 20px 30px;
      background-color: #fff;
      font-weight: bold;
    }
      .plan__head {
        grid-column: 1 / -1;
      }
      .plan__item {
        grid-column: span 3;
        background-color: #efeff5;
        text-align: center;
      }
        .plan__item--tri {
          grid-column: span 2;
        }
        .plan__item>div {
          padding: 0.5em 0;
          border-top: solid 1px #fff;
        }
          .plan__item>div>span {
            color: #f00;
            font-size: 1.8em;
          }

    .medical {
      padding: 20px;
      background-color: #fff;
      font-size: 1.4rem;
    }
      .medical__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: flex-start;
        border-top: solid 1px #aaa;
      }
        .medical__item {
          display: grid;
          grid-template-columns: 36px 1fr;
          height: 100%;
          border-bottom: solid 1px #aaa;
        }
          .medical__mark {
            width: 66%;
            object-fit: scale-down;
            margin: auto;
          }
          .medical__name {
            padding: 0.8em 0.6em;
            background-color: #efeff5;
            font-weight: bold;
          }
      .medical__eg {
        display: flex;
        align-items: center;
        padding: 10px 0;
      }
        .medical__eg>img {
          width: 1.5em;
          margin: 0 0.5em 0 1.5em;
        }

    .feature {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 10px;
      padding: 20px;
      background-color: #fff;
    }
      .feature__img {
        grid-row: 1 / 3 ;
        width: 100%;
        object-fit: contain;
      }
      .feature__head {
        font-weight: bold;
      }
      .feature__text {
        font-size: 1.4rem;
      }

.sidebar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: flex-start;
}
  .sidebar__banner {
    display: block;
    width: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: var(--shadow);
  }
  .sidebar__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 2.8em;
    border-radius: 5px;
    border: solid 1px #aaa;
    background-color: #fff;
    box-shadow: var(--shadow);
    color: var(--text-color);
    font-size: 2.0rem;
    font-weight: bold;
    text-decoration: none;
  }
    .sidebar__button--request {
      background-color: var(--orange);
    }
  .sidebar__tel {
    width: 100%;
    object-fit: contain;
  }
  .sidebar__head {
    display: flex;
    align-items: center;
    padding: 0.8em 1em;
    background-color: #efeff5;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .side-place {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 5px 10px;
    padding: 15px 5px;
    border-bottom: dotted 1px #aaa;
  }
    .side-place__img {
      grid-row: 1 / 3 ;
      width: 100%;
      object-fit: contain;
      margin: auto;
    }
    .sidebar__list a{
      text-decoration: none;
      color:#000;
    }

