.acquisition-section {
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: #222;
}

.acquisition-section *,
.acquisition-section *::before,
.acquisition-section *::after {
  box-sizing: border-box;
}

.acquisition-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 14px 16px;
  border: 5px solid #b9e4fb;
  background: #fff;
}

.acquisition-period {
  display: inline-block;
  margin: -6px 0 12px -6px;
  padding: 6px 22px;
  background: #28aee8;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.property-block {
  margin-top: 8px;
}

.property-block + .property-block {
  margin-top: 28px;
}

.property-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 700;
}

.property-code {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 112px;
  padding: 4px 18px 5px 20px;
  border-radius: 999px 0 0 999px;
  background: #28aee8;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.property-code::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 38px;
  height: 100%;
  background: #28aee8;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 0;
}

.property-code {
  z-index: 1;
}

.property-name {
  position: relative;
  z-index: 2;
  padding-left: 12px;
  color: #111;
}

.property-layout {
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: 18px;
  align-items: start;
}

.property-main-image img,
.property-sub-images img,
.property-map img {
  display: block;
  width: 100%;
  height: auto;
}

.property-main-image img {
  aspect-ratio: 430 / 565;
  object-fit: cover;
}

.property-content {
  min-width: 0;
}

.property-lead {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.property-lead p {
  margin: 0;
}

.property-lead .station {
  position: relative;
  margin-bottom: 2px;
  padding-left: 20px;
  font-weight: 700;
}

.property-lead .station::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  background: #28aee8;
}

.property-sub-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 12px;
}

.property-sub-images img {
  aspect-ratio: 245 / 135;
  object-fit: cover;
}

.property-bottom {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 14px;
  align-items: start;
}

.property-map img {
  aspect-ratio: 270 / 170;
  object-fit: cover;
  border: 1px solid #d7d7d7;
}

.property-spec {
  margin: 0;
  padding: 4px 0 0;
  border-top: 2px solid #d8d8d8;
  border-bottom: 2px solid #d8d8d8;
  font-size: 14px;
  line-height: 1.45;
}

.property-spec div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 8px;
  padding: 5px 0;
}

.property-spec dt {
  color: #28aee8;
  font-weight: 700;
  white-space: nowrap;
}

.property-spec dd {
  margin: 0;
  color: #222;
  font-weight: 700;
}

/* タブレット */
@media (max-width: 900px) {
  .acquisition-inner {
    padding: 12px;
  }

  .acquisition-period {
    font-size: 22px;
  }

  .property-heading {
    font-size: 26px;
  }

  .property-code {
    min-width: 100px;
    font-size: 23px;
  }

  .property-layout {
    grid-template-columns: 36% 1fr;
    gap: 14px;
  }

  .property-lead {
    font-size: 17px;
  }

  .property-bottom {
    grid-template-columns: 1fr;
  }

  .property-spec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
}

/* スマホ */
@media (max-width: 640px) {
  .acquisition-inner {
    padding: 10px;
    border-width: 4px;
  }

  .acquisition-period {
    display: block;
    margin: -2px 0 14px;
    padding: 7px 12px;
    font-size: 18px;
    text-align: center;
  }

  .property-block + .property-block {
    margin-top: 30px;
  }

  .property-heading {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 23px;
  }

  .property-code {
    min-width: 82px;
    padding: 5px 12px 6px 14px;
    font-size: 20px;
  }

  .property-code::after {
    right: -15px;
    width: 28px;
  }

  .property-name {
    padding-left: 8px;
  }

  .property-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .property-main-image img {
    aspect-ratio: 4 / 3;
  }

  .property-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .property-sub-images {
    gap: 8px;
  }

  .property-bottom {
    gap: 12px;
  }

  .property-spec {
    display: block;
    font-size: 14px;
  }

  .property-spec div {
    grid-template-columns: 96px 1fr;
    padding: 6px 0;
    border-bottom: 1px solid #e5e5e5;
  }

  .property-spec div:last-child {
    border-bottom: 0;
  }
}

/* 極小スマホ */
@media (max-width: 420px) {
  .property-heading {
    flex-wrap: wrap;
  }

  .property-name {
    width: 100%;
    padding-left: 0;
    font-size: 22px;
  }

  .property-sub-images {
    grid-template-columns: 1fr;
  }

  .property-spec div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
.acquisition-section--second {
  margin-top: 28px;
}

.property-lead--full {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 600;
}

.property-lead--full p {
  margin: 0;
}

.property-block--compact-main .property-main-image img {
  aspect-ratio: 420 / 470;
  object-fit: cover;
}

.property-main-image--badge {
  position: relative;
}

.image-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 2;
  display: inline-block;
  padding: 7px 12px 8px;
  background: #e6007e;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.property-code--long {
  min-width: 128px;
}

/* C-99 / C-100の本文が横幅いっぱいに来るための微調整 */
.property-block--wide-lead .property-layout {
  margin-top: 8px;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .acquisition-section--second {
    margin-top: 22px;
  }

  .property-lead--full {
    font-size: 16px;
    line-height: 1.65;
  }

  .property-block--compact-main .property-main-image img {
    aspect-ratio: 4 / 3;
  }

  .image-badge {
    top: 10px;
    left: 10px;
    padding: 6px 10px 7px;
    font-size: 20px;
  }

  .property-code--long {
    min-width: 104px;
  }
}
