@charset "utf-8";
.c-strength {
  /* width: 960px; */
  width: 1100px;
}
.c-strength.inner{
  padding-top: 0;
}
/* strength コンポーネントのスタイル */
.c-strength__container {
  font-family: YuGothic, "Yu Gothic", "游ゴシック体", YuGothicM, "メイリオ",
    Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック",
    sans-serif, Helvetica, Arial;
  zoom: 80%;
  margin: 0 auto;
}
.c-strength__wrapper {
  margin-bottom: 110px;
}
.c-strength__wrapper:last-of-type {
  margin-bottom: 0;
}
.c-strength__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  color: black;
  font-size: 40px;
  font-weight: 600;
}

.c-strength__point-label {
  background-color: #1f2749;
  font-weight: 600;
  color: white;
  padding: 15px;
  border: 2px solid #1f2749;
  border-radius: 20px;
  display: inline;
  position: relative;
  margin-top: 0px;
  font-size: 16px;
}
.c-strength__title strong {
  font-weight: bold;
  background: yellow;
  color: #000;
}
.c-strength__content {
}

.c-strength__text-wrapper {
}

.c-strength__subtitle {
  font-size: 24px;
  line-height: 1.4;
  color: #1b274e;
  margin: 20px auto;
  text-align: left;
  vertical-align: baseline !important;
  font-weight: bold;
  border-left: 7px solid #1b274e;
  padding-left: 20px;
}

.c-strength__description {
  color: #000;
  /* font-weight: bold; */
  font-size: 22px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 24px;
}

.c-strength__description p {
  margin: 0;
}

.c-strength__figure {
  text-align: center;
}

.c-strength__figure img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.c-strength__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
  padding-left: 0;
  padding: 20px;
}
.c-strength__list li {
  flex-basis: 95%;
  font-weight: bold;
  font-size: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.c-strength__list li:before {
  content: url("../img/strength/icon.png");
  content: url("https://digitaldata-forensics.com/hacking-c/image/checkbox.png");

  vertical-align: middle;
  position: absolute;
  left: -37px;
}

.c-strength__content--half {
  display: flex;
  justify-content: space-between;
}
.c-strength__content--half .c-strength__text-wrapper {
    width: 780px;
}
.c-strength__content--half .c-strength__figure {
  width: 350px;
  padding-top: 75px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
  .c-strength {
    width: 100%;
    max-width: 960px;
  }
  
  .c-strength__container {
    padding: 0 20px;
    zoom: 90%;
  }
  
  .c-strength__title {
    font-size: 36px;
    gap: 20px;
  }
  
  .c-strength__content--half {
    flex-direction: column;
  }
  
  .c-strength__content--half .c-strength__text-wrapper,
  .c-strength__content--half .c-strength__figure {
    width: 100%;
  }
  
  .c-strength__content--half .c-strength__figure {
    width: 60%;
    margin: 0 auto;
    padding-top: 0px;
  }
}

@media screen and (max-width: 768px) {
  .c-strength__container {
    zoom: 100%;
  }
  
  .c-strength__wrapper {
    margin-bottom: 30px;
  }
  
  .c-strength__title {
    font-size: 28px;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .c-strength__point-label {
    padding: 10px;
    font-size: 14px;
  }
  
  .c-strength__subtitle {
    font-size: 20px;
    border-left: 5px solid #1b274e;
    padding-left: 15px;
  }
  
  .c-strength__description {
    font-size: 18px;
  }
  
  .c-strength__list li {
    font-size: 1.2rem;
  }
  
  .c-strength__list li:before {
    left: -30px;
    transform: scale(0.8);
  }
}

@media screen and (max-width: 480px) {
  
  .c-strength__title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .c-strength__point-label {
        border-radius: 20px;
        padding: 15px;
        padding-left: 30px;
        padding-right: 30px;
        margin: 0 auto;
  }
  
  .c-strength__subtitle {
    font-size: 1.2rem;
    margin: 15px auto;
    padding-left: 12px;
    border-left: 4px solid #1b274e;
  }
  
  .c-strength__description {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .c-strength__list {
    padding: 10px;
  }
  
  .c-strength__list li {
    font-size: 1rem;
    padding-left: 10px;
  }
  
  .c-strength__list li:before {
    left: -25px;
    transform: scale(0.7);
  }
}

/* 画像の表示切り替え（PCとSP） */
@media screen and (max-width: 768px) {
  .c-strength__figure .pc-only {
    display: none;
  }
  
  .c-strength__figure .sp-only {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .c-strength__figure .pc-only {
    display: block;
  }
  
  .c-strength__figure .sp-only {
    display: none;
  }
}