.is-pc{
  display: block;
}
.is-sp{
  display: none;
}
@media only screen and (max-width:641px){
  .is-pc{
    display: none;
  }
  .is-sp{
    display: block;
  }
}

.comunity-concept{
  margin-top: 60px;
}
.comunity-concept-list{
  display: grid;
  gap: 10px;
}


/*------------------------------------------
	コミュニティ賃貸
------------------------------------------*/
.notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  padding: 30px 50px;
  margin-top: 40px;
  margin-bottom: 50px;
  background-color: #ecf6fb;
}

@media screen and (max-width: 641px) {
  .notes {
    grid-template-columns: 1fr;
    padding: 15px 25px;
    margin-bottom: 40px;
  }
}

.notes::before {
  content: "";
  position: absolute;
  top: -35px;
  right: 0;
  left: 0;
  margin-inline: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 35px 15px;
  border-color: transparent transparent #ecf6fb transparent;
}

@media screen and (max-width: 641px) {
  .notes::before {
    right: 0;
    left: 0;
    margin: auto;
  }
}

.notes-txt{
  text-align: left;
}

.notes-tit {
  margin-bottom: 5px;
  font-size: 2.0rem;
  font-weight: bold;
}

@media screen and (max-width: 641px) {
  .notes-tit {
    font-size: 1.8rem;
  }
}

.cta-txt{
  margin-bottom: 20px;
}