@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
.case-cover {
  margin: 2rem 0 6rem 0;
}
.case-cover__title {
  line-height: 2.4;
  font-weight: 500;
  margin: 0;
}
.case-cover__category span {
  display: inline-block;
  background-color: #999;
  padding: 0.5rem 0.8rem;
  margin-right: 0.5rem;
  font-size: 1.4rem;
  color: #FFF;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0.3rem;
}
.case-cover__heading {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 3rem;
  margin: 1rem 0 3rem 0;
}
@media screen and (max-width: 768px) {
  .case-cover__heading {
    font-size: 2.7rem;
  }
}
.case-cover__img {
  border-radius: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case-cover__img {
    border-radius: 2rem;
  }
}
.case-cover__client {
  line-height: 1.5;
}

.results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .results {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.results > div {
  width: 50%;
  border-radius: 1rem;
  position: relative;
  background-color: #FFF;
  -webkit-box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
          box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .results > div {
    width: 100%;
  }
}
.results > div h2 {
  margin: 0;
  line-height: 1;
  padding: 1.3rem 2.5rem;
  font-size: 2rem;
  color: #FFF;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}
.results > div h2:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 1rem;
  width: 8rem;
  height: 8rem;
}
.results > div p {
  margin: 2.5rem;
}
.results > div:first-child:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -2.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(45deg) translate(0, -50%);
          transform: rotate(45deg) translate(0, -50%);
}
@media screen and (max-width: 768px) {
  .results > div:first-child:after {
    top: auto;
    right: auto;
    bottom: -2.5rem;
    left: 50%;
    -webkit-transform: rotate(135deg) translate(50%, 0);
            transform: rotate(135deg) translate(50%, 0);
  }
}
.results > div:first-child h2 {
  background-color: #666;
}
.results > div:first-child h2:after {
  background-image: url(../img/case-results-before.svg);
}
.results > div:last-child h2 {
  background-color: #439ED6;
}
.results > div:last-child h2:after {
  background-image: url(../img/case-results-after.svg);
}

.ttl-block {
  margin: 8rem 0 4rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  color: #439ED6;
  border-left: 3px solid #439ED6;
}
@media screen and (max-width: 768px) {
  .ttl-block {
    font-size: 2rem;
  }
}

.interview {
  counter-reset: question-counter;
}

.interview .question {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 0rem;
  padding-left: 5rem;
  position: relative;
}

.interview .question::before {
  counter-increment: question-counter;
  content: "Q." counter(question-counter);
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.3rem;
  width: 5rem;
  text-align: left;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.3rem;
}

.interview .answer {
  margin: 1rem 0 4rem 5rem;
}
.interview .answer .answer-catch {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
}
.interview .question:first-of-type {
  margin-top: 0;
}

.interview .answer:last-of-type {
  border-bottom: none;
}

.column {
  margin: 6rem 0;
  background-color: #FFF;
  border-radius: 1rem;
  border: 1px solid #CCC;
  padding: 4rem;
}
.column h2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0;
}
.column-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem 4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .column-col {
    grid-template-columns: 1fr;
  }
}
.column-col p {
  margin: 0 0 1rem 0;
}
.column-col figure {
  margin: 0;
}
.column-col figure figcaption {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 1rem;
}/*# sourceMappingURL=case.css.map */