body {
  background: #f1f2f4;
}

.result {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .result {
    margin-top: 4rem;
  }
}
.result__inner {
  max-width: 120rem;
  width: 90%;
  margin-inline: auto;
}
.result__top {
  font-size: 5.2rem;
  color: var(--c_navy2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .result__top {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
}
.result__list {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 3.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .result__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.result__list:nth-child(n+2) {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .result__list:nth-child(n+2) {
    margin-top: 2.5rem;
  }
}
.result__term {
  height: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c_navy1);
  padding-block: 2.5rem;
  background: #e6e8ec;
  text-align: center;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .result__term {
    font-size: 1.6rem;
    padding-block: 1rem;
  }
}
.result__disc {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c_navy1);
  padding-block: 1rem;
}
@media screen and (max-width: 768px) {
  .result__disc {
    font-size: 1.4rem;
    padding-block: 0;
  }
}
.result__table {
  border-collapse: collapse;
  width: 100%;
}
.result__table th,
.result__table td {
  padding: 10px;
  border: 1px solid var(--c_navy1);
  border-collapse: collapse;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .result__table th,
  .result__table td {
    padding: 5px;
    font-size: 1.4rem;
  }
}
.result__table th {
  vertical-align: middle;
  background: #dbdfe5;
}
.result__table td {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .result__table td {
    font-size: 1.4rem;
  }
}

.scene {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .scene {
    margin-top: 5rem;
  }
}
.scene__inner {
  max-width: 120rem;
  width: 90%;
  margin-inline: auto;
}
.scene__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 6.5rem;
}
@media screen and (max-width: 768px) {
  .scene__list {
    gap: 2.5rem 1.5rem;
  }
}
.scene__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 851/510;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.scene figcaption {
  margin-top: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-size: 2rem;
  text-align: center;
  color: var(--c_navy);
}
.scene figcaption::before, .scene figcaption::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.scene figcaption::before {
  -webkit-margin-after: calc((1 - 1.5) * 0.5em);
          margin-block-end: calc((1 - 1.5) * 0.5em);
}
.scene figcaption::after {
  -webkit-margin-before: calc((1 - 1.5) * 0.5em);
          margin-block-start: calc((1 - 1.5) * 0.5em);
}
@media screen and (max-width: 768px) {
  .scene figcaption {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}

.report {
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .report {
    margin-top: 5rem;
  }
}
.report__inner {
  max-width: 120rem;
  width: 90%;
  margin-inline: auto;
}
.report__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem;
  margin-top: 6.5rem;
}
@media screen and (max-width: 768px) {
  .report__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-top: 3rem;
  }
}
.report__item-title {
  font-size: 2.2rem;
  padding: 1.2rem 3rem;
  border-block: 1px solid var(--c_black);
  color: var(--c_black);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .report__item-title {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
    border-block: 1px solid var(--c_black);
  }
}
.report__item-link {
  display: block;
  padding-inline: 2.7rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover) {
  .report__item-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .report__item-link {
    padding-inline: 5%;
  }
}
.report__item-image {
  margin-top: 2.5rem;
  width: 100%;
  border: 1px solid #aca8a7;
  aspect-ratio: 310/442;
}
@media screen and (max-width: 768px) {
  .report__item-image {
    margin-top: 1.5rem;
  }
}
.report__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.report__item-dl {
  color: var(--c_navy);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .report__item-dl {
    font-size: 1.2rem;
  }
}
.report__item-dl::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  aspect-ratio: 16/15;
  -webkit-mask-image: url(./../img/shiryo_dl.png);
          mask-image: url(./../img/shiryo_dl.png);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--c_black);
  margin-left: 0.6rem;
}
@media screen and (max-width: 768px) {
  .report__item-dl::after {
    margin-left: 0.5rem;
    width: 1rem;
  }
}
/*# sourceMappingURL=style.css.map */
