/* ===== 共通 ===== */
body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

main.page-container {
  margin: 0px auto 0;
  padding: 50px 0 0;
}

.progress-bar {
  width: 100%;
  max-width: 100%;
  height: 2px;
  background: #cacaca;
  margin: 0 auto;
  position: relative;

  &.short {
    margin-bottom: 30px;
  }

  .progress-bar-fill {
    width: 35%;
    height: 100%;
    background: var(--color-secondary);
  }

  .progress-bar-fill-center {
    width: 35%;
    height: 100%;
    background: var(--color-secondary);
    margin: 0 auto;
  }
}

.highlight-orange {
  color: var(--color-secondary);
}

.highlight-text {
  color: var(--color-secondary);
  font-weight: bold;
}

.btn {
  width: 350px;
  line-height: normal;
  display: inline-block;
  padding: 17px 40px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;

  &:hover {
    opacity: 0.8;
  }

  &.btn-white {
    background: white;
    color: var(--color-primary);
  }

  &.btn-blue {
    background: var(--color-primary);
    color: white;
    margin-top: 10px;
  }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }

  main.page-container {
padding: 0;
  }
}

@media (max-width: 768px) {}

@media (max-width: 576px) {
  .btn {
    padding: 15px 30px;
    font-size: 18px;
  }
}


/* ===== メインビジュアル ===== */
.hero {
  position: relative;
  padding: 90px 0 130px;
  background: white;

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .main-title {
    font-size: 70px;
    font-weight: bold;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .subtitle {
    display: block;
    font-size: 30px;
    color: var(--color-secondary);
    margin-top: 15px;
  }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;

    .main-title {
      font-size: 50px;
    }

    .subtitle {
      font-size: 24px;
    }
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 50px 0;

    .main-title {
      font-size: 40px;
    }

    .subtitle {
      font-size: 20px;
    }
  }
}

@media (max-width: 576px) {
  .hero {
    .main-title {
      font-size: 32px;
    }

    .subtitle {
      font-size: 18px;
    }
  }
}

/* ===== ブルーセクション ===== */
.blue-section {
  position: relative;
  background: var(--color-primary);
  padding: 100px 0 30px;

  .watermark {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: min(300px, calc((100vw - 160px) / 5));
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Roboto', sans-serif;
    line-height: 0.74;
    white-space: nowrap;
    pointer-events: none;
  }

  .blue-content {
    display: flex;
    position: relative;
    z-index: 1;
    gap: 20px;
  }

  .blue-text {
    flex: 1;
    color: white;

    h2 {
      font-size: 50px;
      font-weight: bold;
      line-height: 1.4;
      margin-bottom: 30px;
      white-space: nowrap;
    }

    p {
      font-size: 16px;
      font-weight: bold;
      line-height: 1.7;
      max-width: 500px;
      letter-spacing: .1px;
    }
  }

  .blue-image {
    flex: 0 0 534px;
    border-radius: 20px;
    box-shadow: 8px 8px 8px 6px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    margin: 40px 0 -80px;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

@media (max-width: 1200px) {
  .blue-section {
    .blue-text {

      h2 {
        font-size: 40px;
      }

      p {
        max-width: 40vw;
      }
    }

    .blue-image {
      flex: auto;
    }

    .watermark {
      font-size: 17vw;
      left: 50px;
    }
  }
}

@media (max-width: 992px) {
  .blue-section {
    padding: 0 0 50px;

    .blue-content {
      flex-direction: column-reverse;
      gap: 40px;
    }

    .blue-image {
      flex: 0 0 auto;
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      margin: -30px auto 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
      }
    }

    .blue-text {
      h2 {
        font-size: 40px;
        white-space: wrap;
      }

      p {
        max-width: 100%;
      }
    }

    .watermark {
	bottom: 20px;
	right: 0;
	font-size: clamp(28px, 20vw, 16vw);
	width: 98%;
	overflow: hidden;
	line-height: 1em;
	left: 2%;
    }
  }
}

@media (max-width: 768px) {
  .blue-section {
    .blue-text {
      h2 {
        font-size: 32px;
      }

      p {
        font-size: 14px;
      }
    }
  }
}

@media (max-width: 576px) {
  .blue-section {
    .blue-text {
      h2 {
        font-size: 28px;
      }
    }

    .watermark {
      font-size: 16vw;
    }
  }
}

/* ===== 全部を比較できるから ===== */
.reason-section {
  background: #f0f0f0;
  padding: 180px 0 86px;
  text-align: center;

  .section-title-flex {
    margin-bottom: 30px;

    .section-title {
      margin-bottom: 0;
    }
  }

  .progress-bar {
    margin-bottom: 58px;
  }

  .reason-compare-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 100px;
    margin: 73px 0 0;
  }

  .reason-compare-card {
    min-height: 490px;
    border-radius: 20px;
    padding: 20px;
    text-align: left;

    .reason-card-label {
      display: inline-block;
      margin: 0 0 35px;
      padding: 10px 20px 9px;
      border-radius: 10px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 0;
    }

    .reason-card-title {
      margin: 0 0 52px;
      font-size: 30px;
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 0;
    }

    .reason-card-list {
      display: grid;

      li {
        position: relative;
        padding-left: 1.3em;
        font-size: 18px;
        font-weight: 700;
        line-height: 2;
        letter-spacing: 0;

        &::before {
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          width: 1em;
          height: 1em;
          content: '';
        }
      }
    }
  }

  .reason-compare-card-general {
    background: #fff;
    border: 3px solid var(--color-primary);

    .reason-card-label {
      color: #fff;
      background: #3B3B3B;
    }

    .reason-card-list {
      li {
        &::before {
          background: url(/assets/img/asset-management/icon_arrow.svg) no-repeat center / contain;
        }
      }
    }
  }

  .reason-compare-card-nakamichi {
    position: relative;
    background: var(--color-primary);
    color: #fff;
    border: 3px solid var(--color-primary);
    overflow: hidden;
    isolation: isolate;

    &::after {
      content: '';
      position: absolute;
      right: -45px;
      bottom: 0px;
      width: min(500px, 56%);
      aspect-ratio: 1 / 1.45;
      background: var(--color-secondary);
      border-radius: 100% 0 0 0;
      z-index: -1;
    }

    .reason-card-label {
      color: var(--color-primary);
      background: #fff;
    }

    .reason-card-list {
      li {
        &::before {
          background: url(/assets/img/asset-management/icon_check_white.svg) no-repeat center / contain;
        }
      }
    }
  }

  .reason-summary {
    margin-top: 62px;

    p {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      line-height: 2;
      letter-spacing: 0;
    }

    .reason-summary-title {
      margin: 28px 0 0;
      color: var(--color-primary);
      font-size: 30px;
      font-weight: 700;
      line-height: 2;
      letter-spacing: 0;

      span {
        color: var(--color-secondary);
      }
    }
  }

  .reason-option-grid {
    max-width: 900px;
    margin: 38px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 30px;
  }

  .reason-option-card {
    background: #f8f8f8;
    border-radius: 14px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    min-height: 165px;
    padding: 14px 12px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;

    .reason-option-icon {
      display: inline-flex;
      width: 62px;
      height: 62px;
      align-items: center;
      justify-content: center;

      svg {
        width: 62px;
        height: 62px;
      }

      img {
        width: 62px;
        height: 62px;
      }
    }

    p {
      margin: 0;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.7;
      letter-spacing: 0;
    }
  }
}

@media (max-width: 1200px) {
  .reason-section {
    .reason-compare-wrap {
      gap: 30px;
    }

    .reason-compare-card {
      min-height: 0;

      .reason-card-label {
        font-size: 18px;
      }

      .reason-card-title {
        font-size: 30px;
      }
    }

    .reason-summary {
      .reason-summary-title {
        font-size: clamp(34px, 3.2vw, 50px);
        line-height: 1.5;
      }
    }
  }
}

@media (max-width: 992px) {
  .reason-section {
    padding: 80px 0;

    .progress-bar {
      margin-bottom: 42px;
    }

    .reason-compare-wrap {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .reason-compare-card {
      padding: 20px;

      .reason-card-label {
        margin-bottom: 24px;
      }

      .reason-card-title {
        margin-bottom: 24px;
      }
    }

    .reason-compare-card-nakamichi {
      &::after {
        right: -40px;
        bottom: -160px;
        width: min(460px, 60%);
      }
    }

    .reason-summary {
      margin-top: 44px;

      p {
        font-size: 15px;
      }
    }

    .reason-option-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
      margin-top: 42px;
    }
  }
}

@media (max-width: 768px) {
  .reason-section {
    .reason-compare-card {
      .reason-card-title {
        font-size: 30px;
      }
    }

    .reason-summary {
      .reason-summary-title {
        margin-top: 30px;
        font-size: 30px;
      }
    }
  }
}

@media (max-width: 576px) {
  .reason-section {
    .progress-bar {
      margin-bottom: 28px;
    }

    .reason-compare-card {
      border-radius: 16px;
      padding: 15px;

      .reason-card-label {
        padding: 6px 14px;
        font-size: 3.5vw;
      }

      .reason-card-title {
        font-size: 6vw;
      }

      .reason-card-list {
        li {
          font-size: 3.5vw;
        }
      }
    }

    .reason-summary {
      p {
        font-size: 3.5vw;
      }

      .reason-summary-title {
        font-size: 5vw;
      }
    }

    .reason-option-grid {
      margin-top: 34px;
    }

    .reason-option-card {
      min-height: 140px;
      padding: 12px;

      .reason-option-icon {
        width: 52px;
        height: 52px;

        svg {
          width: 52px;
          height: 52px;
        }

        img {
          width: 52px;
          height: 52px;
        }
      }

      p {
        font-size: 3.5vw;
      }
    }
  }
}

/* ===== 売る・活かす・増やす ===== */
.choice-section {
  padding: 178px 0 20px;
  text-align: left;

  .section-header {
    margin-bottom: 46px;

    .choice-title {
      color: var(--color-primary);
    }

    .case-subtitle {
      margin: 16px auto 0;
      color: #3c3c3c;
      font-size: 32px;
      line-height: 1.5;
      letter-spacing: 0;
    }
  }

  .choice-container {
    max-width: 100%;
    position: relative;
  }

  .choice-band {
    padding: 0;
  }

  .choice-band-sale,
  .choice-band-use {
    background: var(--color-primary);
    color: #fff;
  }

  .choice-band-plus {
    color: #2d2d2d;
  }

  .choice-watermark-wrap {
    max-width: 1500px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    height: 0;
  }

  .choice-band-content {
    max-width: 1060px;
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 758px;
    column-gap: 40px;
    row-gap: 25px;
    align-items: start;
    padding: 45px 0 70px;
  }

  .choice-side {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
  }

  .choice-watermark {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    font-size: 160px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0;
    opacity: 0.12;
  }

  .choice-band-sale,
  .choice-band-use {
    .choice-watermark {
      color: #fff;
    }
  }

  .choice-band-plus {
    .choice-watermark {
      color: var(--color-primary);
    }
  }

  .choice-heading {
    margin: 0 0 10px;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .choice-side-text {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .choice-intro {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.7;
    letter-spacing: 0;
    padding: 0 0 15px;
  }

  .choice-detail-card-primary {
    grid-column: 2;
    grid-row: 2;
    width: 758px;
    max-width: 100%;
  }

  .choice-detail-sublist {
    grid-column: 2;
    grid-row: 3;
    display: grid;
    gap: 18px;
  }

  .choice-detail-card {
    background: #fff;
    color: #2f2f2f;
    border-radius: 20px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 19px 22px 30px;
    margin-top: 0;

    h4 {
      display: flex;
      align-items: end;
      gap: 18px;
      font-size: 18px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: 0;

      img {
        width: 38px;
        height: auto;
      }
    }

    p {
      margin: 27px 0;
      font-size: 14px;
      line-height: 1.5;
      letter-spacing: 0;
    }
  }

  .choice-tag-list {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .choice-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 12px;
    border-radius: 5px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .choice-band-plus {
    .choice-detail-card {
      background: #f6f6f6;
    }
  }
}

@media (max-width: 1200px) {
  .choice-section {
    .section-header {
      .case-title {
        font-size: clamp(50px, 5.6vw, 66px);
      }

      .case-subtitle {
        font-size: clamp(24px, 2.4vw, 30px);
      }
    }

    .choice-band-content {
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 24px;
    }

    .choice-watermark {
      font-size: 92px;
    }

    .choice-heading {
      font-size: 60px;
      line-height: 1.2;
    }

    .choice-side-text {
      font-size: 17px;
    }

    .choice-intro {
      font-size: 18px;
    }

    .choice-detail-card {
      h4 {
        font-size: 34px;
      }

      p {
        font-size: 16px;
      }
    }

    .choice-tag {
      font-size: 13px;
      padding: 3px 10px;
    }
  }
}

@media (max-width: 992px) {
  .choice-section {
    padding-top: 70px;

    .section-header {
      .case-title {
        font-size: 50px;
      }

      .case-subtitle {
        font-size: 24px;
      }
    }

    .choice-band {
      padding: 34px 0;
    }

    .choice-band-content {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 22px;
    }

    .choice-side {
      grid-column: 1;
      grid-row: auto;
      align-self: auto;
    }

    .choice-intro,
    .choice-detail-card-primary,
    .choice-detail-sublist {
      grid-column: 1;
      grid-row: auto;
    }

    .choice-watermark {
      font-size: 72px;
    }

    .choice-heading {
      font-size: 60px;
      line-height: 1.2;
    }

    .choice-side-text {
      font-size: 16px;
    }

    .choice-intro {
      font-size: clamp(14px,3.5vw,16px);
      line-height: 1.7;
    }

    .choice-detail-card {
      padding: 18px 18px 14px;
      width: 100%;

      h4 {
        font-size: 30px;

        img {
          width: 28px;
          height: 28px;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .choice-section {
    .section-header {
      margin-bottom: 30px;

      .case-title {
        font-size: 40px;
      }

      .case-subtitle {
        font-size: 18px;
      }
    }

    .choice-band {
      padding: 26px 0;
    }

    .choice-watermark {
      font-size: 56px;
    }

    .choice-heading {
      font-size: 48px;
      line-height: 1.2;
    }

    .choice-side-text {
      font-size: 15px;
    }

    .choice-detail-card {
      border-radius: 14px;

      h4 {
        font-size: 24px;
      }

      p {
        font-size: 14px;
      }
    }

    .choice-tag {
      font-size: 14px;
      padding: 2px 8px;
    }
  }
}

@media (max-width: 576px) {
  .choice-section {
    padding-top: 52px;

    .section-header {
      .case-title {
        font-size: 32px;
      }

      .case-subtitle {
        font-size: 3.5vw;
      }
    }

    .choice-watermark {
      font-size: 20vw;
    }

    .choice-heading {
      font-size: 12vw;
      line-height: 1.2;
    }

    .choice-side-text {
      font-size: 4vw;
	br{display:none;}
    }

    .choice-detail-card {
      h4 {
        font-size: 5vw;

        img {
                    width: 1.5em;
                    height: 1.5em;
        }
      }
    }
  }
}

/* ===== Before/After 事例 ===== */
.case-section:not(.choice-section) {
  background: white;
  padding: 80px 0;
  text-align: center;

  .case-title {
    color: var(--color-primary);
  }

  .case-container {
    max-width: 1600px;
  }

  .case-grid {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 60px auto 0;

    .case-item {
      text-align: left;
      position: relative;

      img {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 20px;
      }

      h3 {
        font-size: 24px;
        font-weight: bold;
        color: var(--color-primary);
        margin: 13px 0 10px;
        line-height: 1.2;
      }

      p {
        font-size: 16px;
        line-height: 1.7;
      }

      .case-badge {
        background: var(--color-secondary);
        color: white;
        padding: 7px 7px 5px;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
        font-family: 'Roboto', sans-serif;
        display: inline-block;
        line-height: normal;
      }
    }
  }
}

@media (max-width: 1200px) {
  .case-section:not(.choice-section) {
    .case-grid {
      .case-item {
        h3 {
          font-size: 23px;
        }

        p {
          font-size: 15px;
        }
      }
    }
  }
}

@media (max-width: 992px) {
  .case-section:not(.choice-section) {
    .case-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin: 50px auto 30px;
      gap: 30px;

      .case-item {
        img {
          height: 230px;
          object-fit: cover;
        }
      }
    }

  }
}

@media (max-width: 768px) {
  .case-section:not(.choice-section) {
    .case-grid {
      display: flex;
      gap: 16px;
      margin: 40px 0 24px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;

      .case-item {
        flex: 0 0 80%;
        scroll-snap-align: start;
      }
    }
  }
}

@media (max-width: 576px) {
  .case-section:not(.choice-section) {

    .case-grid {
      .case-item {
        .case-badge {
          font-size: 16px;
        }

        h3 {
          font-size: 20px;
        }
      }
    }
  }
}

/* ===== ナカミチの豊富な強み ===== */
.pillars-section {
  padding: 80px 0 90px;

  .pillars-card {
    background: var(--color-primary);
    border-radius: 30px;
    padding: 58px 44px 55px 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 36px;
    align-items: center;
  }

  .pillars-image {
    img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      display: block;
    }
  }

  .pillars-content {
    color: #fff;
    letter-spacing: 0;

    h3 {
      margin: 0;
      font-size: 35px;
      font-weight: 700;
      line-height: 1.4;

      span {
        color: var(--color-secondary);
      }
    }

    .pillars-lead {
      margin: 35px 0 30px;
      font-size: 20px;
      font-weight: 700;
      line-height: 1.7;
    }

    .pillars-body {
      font-size: 18px;
      line-height: 1.7;
    }
  }

  .pillars-note {
    margin: 75px 0 0;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
  }
}

@media (max-width: 1200px) {
  .pillars-section {
    .pillars-content {
      h3 {
        font-size: clamp(28px, 2.9vw, 33px);
      }

      .pillars-lead {
        font-size: 18px;
      }

      .pillars-body {
        font-size: 16px;
      }
    }
  }
}

@media (max-width: 992px) {
  .pillars-section {
    padding: 60px 0 70px;

    .pillars-card {
      grid-template-columns: 1fr;
      gap: 26px;
    }

    .pillars-image {
      img {
        height: 350px;
      }
    }

    .pillars-content {
      h3 {
        font-size: 34px;
      }

      .pillars-lead {
        margin-top: 18px;
      }

      .pillars-body {
        margin-top: 20px;
      }
    }

    .pillars-note {
      margin: 40px 0 0;
      font-size: 20px;
    }
  }
}

@media (max-width: 768px) {
  .pillars-section {
    .pillars-card {
      border-radius: 24px;
      padding: 22px;
    }

    .pillars-image {
      img {
        height: 220px;
      }
    }

    .pillars-content {
      h3 {
        font-size: 28px;
      }

      .pillars-lead {
        font-size: 16px;
      }

      .pillars-body {
        font-size: 15px;
      }
    }

    .pillars-note {
      margin: 32px 0 0;
      font-size: 16px;
      line-height: 1.8;
    }
  }
}

@media (max-width: 576px) {
  .pillars-section {
    .pillars-card {
      border-radius: 20px;
      padding: 16px;
      gap: 18px;
    }

    .pillars-content {
      h3 {
        font-size: 24px;
      }

      .pillars-lead {
        margin-top: 14px;
        font-size: 14px;
      }

      .pillars-body {
        margin-top: 16px;
        font-size: 13px;
        line-height: 1.7;
      }
    }

    .pillars-note {
      font-size: 15px;
    }
  }
}

/* ===== 空室診断サービス ===== */
.diagnosis-section {
  background: #f0f0f0;
  padding: 80px 0;

  .diagnosis-content {
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 60px;
    align-items: center;

    .diagnosis-image {
      width: 100%;
      overflow: hidden;

      img {
        width: 100%;
        height: auto;
      }
    }

    .diagnosis-text {
      h2 {
        font-size: 50px;
        font-weight: bold;
        color: var(--color-primary);
        margin-bottom: 20px;
      }

      .diagnosis-details {
        padding-left: 20px;

        .intro-text {
          font-size: 18px;
          font-weight: bold;
          margin-bottom: 20px;
        }

        .diagnosis-list {
          list-style: disc;
          padding-left: 30px;
          margin: 40px 0;

          li {
            font-size: 24px;
            font-weight: bold;
            line-height: 1.7;
          }
        }
      }
    }
  }
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
  .diagnosis-section {
    .diagnosis-content {
      grid-template-columns: 1fr;
      gap: 30px;

      .diagnosis-image {
        height: 230px;
        margin: 0 auto;
      }

      .diagnosis-text {
        .diagnosis-details {
          padding-left: 0;
        }
      }
    }
  }
}

@media (max-width: 768px) {
  .diagnosis-section {
    .diagnosis-content {
      .diagnosis-text {
        h2 {
          font-size: 30px;
        }

        .diagnosis-details {
          .diagnosis-list {
            li {
              font-size: 20px;
            }
          }
        }
      }
    }
  }
}

@media (max-width: 576px) {
  .diagnosis-section {
    .diagnosis-content {
      .diagnosis-text {
        h2 {
          font-size: 25px;
        }

        .diagnosis-details {
          .diagnosis-list {
            li {
              font-size: 18px;
            }
          }
        }
      }
    }
  }
}