/* 既存の相談入口で、利用許可済みの室内写真を装飾背景としてのみ使用する。 */
.purpose-section#concerns {
  background-color: var(--white);
  background-image: linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)), url('/assets/properties/miyoshi-interior.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 700px) {
  .purpose-section#concerns {
    background-image: linear-gradient(rgba(255, 255, 255, .84), rgba(255, 255, 255, .80)), url('/assets/properties/miyoshi-interior.webp');
    background-position: center top;
    background-size: auto 680px;
  }
}
