:root {
  --blue: #0052b8;
  --deep: #08275c;
  --yellow: #ffd537;
  --sky: #edf7ff;
  --text: #0c1936;
  --muted: #60708f;
  --line: #dbe7f7;
  --shadow: 0 20px 50px rgba(7, 39, 92, .12);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  color: var(--text);
  background: #fff;
}
.report-section {
  padding: 88px 20px;
  background:
    radial-gradient(circle at 85% 18%, rgba(0, 82, 184, .12), transparent 28%), linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
}
.report-section__inner {
  width: min(1120px, 100%);
  margin-inline: auto;
  padding: 56px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(219, 231, 247, .9);
  box-shadow: var(--shadow);
}
.report-section .bt {
margin: 30px auto 0 auto;
text-align: center;
display: block;
}
.report-section__head {
  text-align: center;
}
.report-section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--blue);
  font-weight: 700;
  font-size: 24px;
}
.report-section__label::before,
.report-section__label::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--blue);
  transform: rotate(45deg);
}
.report-section__label::after {
  transform: rotate(-45deg);
}
.report-section h2 {
  display: inline;
  margin: 0;
  color: var(--deep);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.15;
  letter-spacing: -.04em;
  background: linear-gradient(transparent 70%, var(--yellow) 70%);
}
.report-section__lead {
  margin: 28px 0 0;
  color: var(--text);
  font-size: 20px;
  line-height: 1.9;
  font-weight: 600;
}
.report-section__lead strong {
  color: var(--blue);
}
.report-section__body {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  align-items: center;
  gap: 30px;
}
.report-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.report-benefit {
  position: relative;
  min-height: 292px;
  padding: 42px 1em;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(8, 39, 92, .08);
}
.report-benefit__num {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0065d9, #0043a5);
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 82, 184, .25);
}
.report-benefit__icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--blue);
  font-size: 42px;
}
.report-benefit h3 {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -.03em;
}
.report-benefit h3::after {
  content: "";
  display: block;
  width: 74px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  border-bottom: 4px dashed var(--yellow);
}
.report-benefit p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
}
.report-mockup {
  position: relative;
}
.report-mockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 28px rgba(8, 39, 92, .20));
}
.report-section__bottom {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  align-items: center;
  gap: 32px;
  margin-top: 36px;
  padding: 28px 36px;
  border-radius: 20px;
  background: linear-gradient(90deg, #eef6ff, #f8fbff);
  border: 1px solid var(--line);
}
.report-section__bottom-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 42px;
}
.report-section__bottom p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 600;
}
.report-section__bottom strong {
  color: var(--blue);
  font-size: 32px;
  line-height: 1.35;
  font-weight: 700;
  background: linear-gradient(transparent 70%, var(--yellow) 70%);
}
@media (max-width:980px) {
  .report-section__inner {
    padding: 42px 24px;
  }
  .report-section__body {
    grid-template-columns: 1fr;
  }
  .report-benefits {
  margin: 40px auto 0 auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }
  .report-mockup {
    max-width: 520px;
    margin-inline: auto;
  }
  .report-section__bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .report-section__bottom-icon {
    margin-inline: auto;
  }
}
@media (max-width:600px) {
  .report-section {
    padding: 56px 14px;
  }
  .report-section__inner {
    padding: 34px 16px;
    border-radius: 22px;
  }
  .report-section__label {
    font-size: 18px;
  }
  .report-section__label::before, .report-section__label::after {
    width: 24px;
  }
  .report-section h2 {
    font-size: 32px;
  }
  .report-section__lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .report-benefit {
    min-height: auto;
    padding: 40px 20px 24px;
  }
  .report-benefit h3 {
    font-size: 20px;
  }
  .report-benefits {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 14px;
}
.report-benefit:last-child {
  grid-column: 1 / -1;
  width: calc((100% - 14px) / 2);
  margin-inline: auto;
}
.report-benefit__num {
  width: 48px;
  height: 48px;
  font-size: 20px;
  top: -24px;
}
.report-benefit__icon {
  width: 64px;
  height: 64px;
  font-size: 30px;
  margin-bottom: 14px;
}
.report-benefit h3 {
  font-size: 18px;
  line-height: 1.35;
}
.report-benefit p {
  font-size: 13px;
  line-height: 1.6;
}
  .report-section__bottom {
    padding: 24px 18px;
  }
  .report-section__bottom strong {
    font-size: 26px;
  }
}